Skip to content

Instantly share code, notes, and snippets.

@XadillaX
Created July 15, 2014 08:36
Show Gist options
  • Save XadillaX/c2c460c4afef05b72a23 to your computer and use it in GitHub Desktop.
Save XadillaX/c2c460c4afef05b72a23 to your computer and use it in GitHub Desktop.
(println ((fn
[n]
(take n (fn fib
([] (concat [1 1] (fib 1 1)))
([x1 x2]
(let [x3 (+ x1 x2)]
(lazy-seq
(cons x3 (fib x2 x3)))))))) 3))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment