Skip to content

Instantly share code, notes, and snippets.

Created February 10, 2014 12:38
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 anonymous/8915135 to your computer and use it in GitHub Desktop.
Save anonymous/8915135 to your computer and use it in GitHub Desktop.
(= ((fn rec
[l t]
((if (= t 0)
(first l)
(rec (rest l) (- t 1))))) '(4 5 6 7) 2) 6)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment