Skip to content

Instantly share code, notes, and snippets.

@SeanTAllen
Created January 10, 2012 12:59
Show Gist options
  • Save SeanTAllen/1588966 to your computer and use it in GitHub Desktop.
Save SeanTAllen/1588966 to your computer and use it in GitHub Desktop.
Nth Element
(fn [list element] (if (zero? element) (first list)(recur (rest list)(dec element))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment