Skip to content

Instantly share code, notes, and snippets.

@abatilo
Created January 28, 2018 19:36
Show Gist options
  • Save abatilo/95b608c36a40dde593bf7875f4318bbc to your computer and use it in GitHub Desktop.
Save abatilo/95b608c36a40dde593bf7875f4318bbc to your computer and use it in GitHub Desktop.
(ns flyr.core)
(defn fib [n]
(if (= 0 n)
0
(if (= 1 n)
1
(+ (fib (- n 1)) (fib (- n 2))))))
(defn -main []
(->
(loop [i 0]
(->
(fib i)
(println))
(if (< i 10)
(recur (+ i 1))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment