2 lines
90 B
Common Lisp
2 lines
90 B
Common Lisp
(defun add-four-by-function (a-number)
|
|
(funcall (eval '(lambda (n) (+ 4 n)))) a-number)
|