Arithmetic functions

Arithmetic operations are also functions, used in infix notation: $3+4$, but we may also use them in prefix notation: $(+) 3 4$.

Again, application has priority:


square 1 + 4 * 2
-- means
(square 1) + (4 * 2)