new var declaration syntax

This commit is contained in:
2026-05-27 20:25:58 +02:00
parent 284bc61f24
commit 4fda79f0bc
48 changed files with 450 additions and 449 deletions

View File

@@ -1,9 +1,9 @@
func main[] : i64
let a = 0
let b = 1
a := 0
b := 1
while a < 100000
io.println_i64(a)
let temp = b
temp := b
b = a + b
a = temp