4 lines
100 B
Text
4 lines
100 B
Text
function fibor(integer n)
|
|
if n<2 then return n end if
|
|
return fibor(n-1)+fibor(n-2)
|
|
end function
|