langatator/examples/fibo.ltor

10 lines
119 B
Text
Raw Normal View History

2022-05-15 16:46:16 +00:00
set a to 1
set b to 1
set i to 0
while i < 10 do
set c to a
set a to a+b
set b to c
print_number a
end