The functional programmer's toolkit.
Create a function that always returns value.
value
The identity function: it just returns its argument unchanged.
A function which does nothing and returns void.
void
A function which applies the + operator to its arguments.
+
The functional programmer's toolkit.