beautiful...

Posted by ungraspiness Mon, 10 Apr 2006 22:37:00 GMT

(defun flatten-list (exp)
    (if (consp exp)
    (append (flatten-list (car exp)) (flatten-list (cdr exp)))
      (list exp)))

Posted in ,  | Tags ,  | no comments

Comments

(leave url/email »)

   Comment Markup Help Preview comment