2 lines
61 B
Common Lisp
2 lines
61 B
Common Lisp
|
|
(defun compose (f g) (lambda (x) (funcall f (funcall g x))))
|