RosettaCodeData/Task/Currying/Hy/currying-1.hy
2023-07-01 13:44:08 -04:00

3 lines
39 B
Hy

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