5 lines
81 B
Text
5 lines
81 B
Text
|
|
(de fibo (N)
|
||
|
|
(if (>= 2 N)
|
||
|
|
1
|
||
|
|
(+ (fibo (dec N)) (fibo (- N 2))) ) )
|