RosettaCodeData/Task/Currying/PARI-GP/currying.pari
2015-02-20 09:02:09 -05:00

2 lines
41 B
Text

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