Skip to content

Instantly share code, notes, and snippets.

@v2e4lisp
Created January 13, 2013 15:44
Show Gist options
  • Save v2e4lisp/4524703 to your computer and use it in GitHub Desktop.
Save v2e4lisp/4524703 to your computer and use it in GitHub Desktop.
ya-elt
(defun ya-elt (the-list index)
(if (> index 0)
(ya-elt (cdr the-list) (- index 1))
(car the-list)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment