5 lines
82 B
Text
5 lines
82 B
Text
|
|
function fib_r(n)
|
||
|
|
if n < 2 : return n
|
||
|
|
return fib_r(n-1) + fib_r(n-2)
|
||
|
|
end
|