2 lines
100 B
Text
2 lines
100 B
Text
(defn int fib (int n) (return (? (< n 2) n (+ (fib (- n 1)) (fib (- n 2))))))
|
|
(main (prn (fib 30)))
|