Generation

generate functionMon, 21 Nov 2022

Lisp interpreter

ommon Lisp (defun eval (expr) (cond ((atom expr) expr) (t (apply (car expr) (mapcar 'eval (cdr expr))))))

Questions about programming?Chat with your personal AI assistant