Example
l
The function isZero, defined by:
isZero(X) = X == 0;
can also be written
anonymously
:
(X) => X == 0
read Ò
the function that, with argument X,
returns the value of X == 0Ó.