Example
lThe 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Ó.