4 lines
70 B
Text
4 lines
70 B
Text
(defun curry (f arg)
|
|
(lambda (x)
|
|
(apply f
|
|
(list arg x))))
|