LISP reverse function October 17, 2012 Get link Facebook X Pinterest Email Other Apps (defun reverse2(list1) (cond ((null list1) '()) (t ( append (reverse2 (cdr list1)) (list (car list1)) ) ) ) ) Comments
Comments
Post a Comment