RosettaCodeData/Task/Fibonacci-sequence/PicoLisp/fibonacci-sequence-2.l

8 lines
161 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
(de fibo (N)
2014-04-02 16:56:35 +00:00
(cache '(NIL) N # Use a cache to accelerate
2013-04-10 21:29:02 -07:00
(if (>= 2 N)
N
(+ (fibo (dec N)) (fibo (- N 2))) ) ) )
(bench (fibo 1000))