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

6 lines
57 B
Hy

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