Name: Anonymous 2012-10-18 15:47
Let's have a serious thread.
[1]> (defun cdt (list)
(if (null list)
nil
(if (null (cdr list))
list
(my-last (cdr list)))))
MY-LAST
[2]> (cdt '(HAX MY ANUS))
(ANUS)
[3]>