proper-listp
| emacs(defun proper-listp (l) (or (null l) (and (consp l)
(proper-listp (cdr l)))))
You can comment with Disqus or you can e-mail me at sacha@sachachua.com.
(defun proper-listp (l) (or (null l) (and (consp l)
(proper-listp (cdr l)))))