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

6 lines
57 B
Hy

=> (setv add2 (addN 2))
=> (add2 7)
9
=> ((addN 3) 4)
7