Name: Anonymous 2011-12-22 21:45
Im going to school for CS and need an idea for my doctoral thesis. Anyone got an idea?
(defun recursive-listp (lst)
(if (null lst)
nil
(dolist (obj lst)
(if (listp obj)
(progn
(format t "~A is a list.~%" obj)
(recursive-listp obj))))))