6 lines
89 B
Text
6 lines
89 B
Text
fun fib(n) {
|
|
if (n <= 1) return n;
|
|
return fib(n - 2) + fib(n - 1);
|
|
}
|
|
|
|
print fib(30);
|