This website requires JavaScript.
Explore
Help
Sign In
strips
/
pork
Watch
2
Star
0
Fork
0
You've already forked pork
mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced
2025-08-03 13:11:32 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
f1e1617c1e522352d0155f79b18c755c3e4b7b5c
pork
/
examples
/
count.pork
8 lines
79 B
Plaintext
Raw
Normal View
History
Unescape
Escape
language: var, reassign, comparison operators
2023-09-10 04:34:50 -04:00
export func main() {
var x = 1
vm: very basic virtual machine
2023-11-14 23:44:10 -08:00
while x <= 5 {
global: a working virtual machine for some of the use cases. APIs and validation still WIP.
2023-11-21 22:18:05 -08:00
println(x)
language: implement let definitions
2023-09-11 04:57:13 -04:00
x++
language: var, reassign, comparison operators
2023-09-10 04:34:50 -04:00
}
}
Reference in New Issue
Copy Permalink