RosettaCodeData/Task/Currying/PARI-GP/currying.parigp
2023-07-01 13:44:08 -04:00

2 lines
41 B
Text

curriedPlus(x)=y->x+y;
curriedPlus(1)(2)