7 lines
96 B
Text
7 lines
96 B
Text
func fib n .
|
|
if n < 2
|
|
return n
|
|
.
|
|
return fib (n - 2) + fib (n - 1)
|
|
.
|
|
print fib 36
|