if, while, scopes

This commit is contained in:
2025-05-30 17:31:20 +02:00
parent da1102714a
commit f72e8a4149
4 changed files with 103 additions and 32 deletions

View File

@@ -1,8 +1,8 @@
let a: I64 = 0
let b: I64 = 1
let temp: I64 = 0
while a < 10000
while a < 100000
print a
temp = a
b = temp + b
let temp: I64 = b
b = a + b
a = temp