Skip to content

Instantly share code, notes, and snippets.

@bhenry
Created October 12, 2010 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhenry/8223ea8e8d2db70f54f2 to your computer and use it in GitHub Desktop.
Save bhenry/8223ea8e8d2db70f54f2 to your computer and use it in GitHub Desktop.
(defn nth-fib [n]
(first (nth
(iterate #(vector (second %) (+ (first %) (second %))) [0 1])
n)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment