Skip to content

Instantly share code, notes, and snippets.

@maleghast
Created June 13, 2012 21:31
Show Gist options
  • Save maleghast/2926605 to your computer and use it in GitHub Desktop.
Save maleghast/2926605 to your computer and use it in GitHub Desktop.
4-Clojure Problem #26 - Warning SPOILERS!
(fn [x] (take x ((fn fib [a b] (cons a (lazy-seq (fib b (+ a b))))) 1 1)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment