LISP Return Third Character Function October 17, 2012 Get link Facebook X Pinterest Email Other Apps (defun third-char(list) (car (cdr (cdr list))) ) > third-char '(a b c d) = C Comments
Comments
Post a Comment