2 lines
64 B
Text
2 lines
64 B
Text
|
|
function fib(n) = if n < 2 then n else fib(n - 2) + fib(n - 1);
|