RosettaCodeData/Task/Currying/Hy/currying-1.hy
2017-09-25 22:28:19 +02:00

3 lines
39 B
Hy

(defn addN [n]
(fn [x]
(+ x n)))