12 lines
159 B
Plaintext
12 lines
159 B
Plaintext
include "std/io.zr"
|
|
|
|
func main[] : i64
|
|
a := 0
|
|
b := 1
|
|
|
|
while a < 100000
|
|
io.println_i64(a)
|
|
temp := b
|
|
b += a
|
|
a = temp
|