Skip to content

Instantly share code, notes, and snippets.

@AlejandroCatalina
Created January 22, 2016 10:33
Show Gist options
  • Save AlejandroCatalina/027d4fd0b7360088c579 to your computer and use it in GitHub Desktop.
Save AlejandroCatalina/027d4fd0b7360088c579 to your computer and use it in GitHub Desktop.
#(take % ((fn rfib [a b]
(lazy-seq (cons a (rfib b (+ a b)))))
1 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment