99 LISP problems: Problem #5 Jun 20th, 2014 12:50 am Solution to the 99 LISP Problems #5 1 2 3 4 5 6 (defun my-reverse (alist) (if (null alist) nil (append (my-reverse (cdr alist)) (list (car alist))))) Lisp dialect: Steel Bank Common Lisp