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

4 lines
67 B
Text

(defun g (x)
(lambda (y)
(lambda (z)
(* (+ x y) z))))