99 LISP problems: Problem #4 Jun 20th, 2014 12:49 am Solution to the 99 LISP Problems #4 1 2 3 4 (defun my-len (alist) (if (null alist) 0 (1+ (my-len (cdr alist))))) Lisp dialect: Steel Bank Common Lisp