lang/example.script

12 lines
88 B
Plaintext

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