5 lines
65 B
Text
5 lines
65 B
Text
|
|
on fib (n)
|
||
|
|
if n<2 then return n
|
||
|
|
return fib(n-1)+fib(n-2)
|
||
|
|
end
|