1 line
61 B
Common Lisp
1 line
61 B
Common Lisp
(defun compose (f g) (lambda (x) (funcall f (funcall g x))))
|
(defun compose (f g) (lambda (x) (funcall f (funcall g x))))
|