RosettaCodeData/Task/Currying/LFE/currying-1.lfe
2023-07-01 13:44:08 -04:00

4 lines
70 B
Text

(defun curry (f arg)
(lambda (x)
(apply f
(list arg x))))