Skip to content

Instantly share code, notes, and snippets.

@fronx
Created July 31, 2011 01:19
Show Gist options
  • Select an option

  • Save fronx/1116230 to your computer and use it in GitHub Desktop.

Select an option

Save fronx/1116230 to your computer and use it in GitHub Desktop.
(fn [ll ii] (loop [l ll i ii] (if (= i 0) (first l) (recur (rest l) (- i 1)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment