99 LISP problems: Problem #2 Jun 20th, 2014 12:10 am Solution to the 99 LISP Problems #2: 1 2 3 4 5 (defun my-but-last (alist) (if (<= (length alist) 2) alist (my-but-last (cdr alist)))) Lisp dialect: Steel Bank Common Lisp