Skip to content

Instantly share code, notes, and snippets.

@MichaelDrogalis
Created April 30, 2012 18:36
Show Gist options
  • Select an option

  • Save MichaelDrogalis/2560871 to your computer and use it in GitHub Desktop.

Select an option

Save MichaelDrogalis/2560871 to your computer and use it in GitHub Desktop.
(defn fibs
([] (cons 0 (fibs 0 1)))
([a b]
(lazy-seq (cons b (fibs b (+ a b))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment