RosettaCodeData/Task/Currying/LFE/currying-1.lfe

5 lines
70 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(defun curry (f arg)
(lambda (x)
(apply f
(list arg x))))