Files
zern/examples/fib.zr
2025-06-01 17:30:26 +02:00

12 lines
212 B
Plaintext

func print_i64[x: I64] : I64
printf("%ld\n", x)
func main[] : I64
let a: I64 = 0
let b: I64 = 1
while a < 100000
print_i64(a)
let temp: I64 = b
b = a + b
a = temp