This commit is contained in:
2025-05-31 15:47:20 +02:00
parent cfe35bcc9d
commit 2c92cbe0b2
7 changed files with 9 additions and 9 deletions

9
examples/fib.zr Normal file
View File

@@ -0,0 +1,9 @@
func main[]
let a: I64 = 0
let b: I64 = 1
while a < 100000
print(a)
let temp: I64 = b
b = a + b
a = temp