2 lines
75 B
Common Lisp
2 lines
75 B
Common Lisp
(defun compose (f g)
|
|
(eval `(lambda (x) (funcall ',f (funcall ',g x)))))
|