Created
July 15, 2014 08:36
-
-
Save XadillaX/c2c460c4afef05b72a23 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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