language: var, reassign, comparison operators

This commit is contained in:
2023-09-10 04:34:50 -04:00
parent f433ba2776
commit 71999032ac
20 changed files with 262 additions and 26 deletions

7
examples/count.pork Normal file
View File

@ -0,0 +1,7 @@
export func main() {
var x = 1
while x <= 5 {
println(x)
x = x + 1
}
}