4 lines
85 B
Text
4 lines
85 B
Text
(de fib-rec (n)
|
|
(if (< n 2)
|
|
n
|
|
(+ (fib-rec (- n 2)) (fib-rec (- n 1)))))
|