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

7 lines
136 B
Text

threePlus=: 3&+
threePlus 7
10
halve =: %&2 NB. % means divide
halve 20
10
someParabola =: _2 3 1 &p. NB. x^2 + 3x - 2