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