top of page
Currying
Functions can be partially applied arguments to get a new function that takes the remaining ones.
​
> cube = (^3)
> cube 2
8
bottom of page
Functions can be partially applied arguments to get a new function that takes the remaining ones.
​
> cube = (^3)
> cube 2
8