5 lines
93 B
Text
5 lines
93 B
Text
fn fib n:
|
|
if n < 2: n
|
|
else: (n - 1 -> fib) + (n - 2 -> fib)
|
|
|
|
[0:100] -> * fib -> * print
|