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

5 lines
70 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
(defun curry (f arg)
(lambda (x)
(apply f
(list arg x))))