RosettaCodeData/Task/Currying/TXR/currying-3.txr
2023-07-01 13:44:08 -04:00

4 lines
63 B
Text

(defun g (x)
(lambda (y)
(lambda (z)
(f x y z))))