99 LISP problems: Problem #1 Jun 20th, 2014 12:03 am Solution to the 99 LISP Problems #1: 1 2 3 4 5 6 7 8 (defun my-last (alist) (if (equalp (length alist) 0) nil (if (equalp (length alist) 1) alist (my-last (cdr alist))))) Lisp dialect: Steel Bank Common Lisp