Skip to content

Instantly share code, notes, and snippets.

@andresilva
Created July 26, 2014 02:36
Show Gist options
  • Save andresilva/7499c13e51d68e379f15 to your computer and use it in GitHub Desktop.
Save andresilva/7499c13e51d68e379f15 to your computer and use it in GitHub Desktop.
(let
(nth [li n]
(tif (= n 0)
(car li)
(recur (cdr li) (- n 1))))
(nth [0 1 2 3 4 5] 4))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment