Created
January 13, 2013 15:44
-
-
Save v2e4lisp/4524703 to your computer and use it in GitHub Desktop.
ya-elt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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