4 lines
81 B
Text
4 lines
81 B
Text
to fib :n [:a 0] [:b 1]
|
|
if :n < 1 [output :a]
|
|
output (fib :n-1 :b :a+:b)
|
|
end
|