3 lines
78 B
Text
3 lines
78 B
Text
function fib,n
|
|
if n lt 3 then return,1L else return, fib(n-1)+fib(n-2)
|
|
end
|