lang/examples/fib.script

13 lines
83 B
Plaintext

x := 1
y := 1
i := 60
while i {
z := x + y
y = x
x = z
putln(z)
i = i - 1
}