top of page

Infix notation

Functions can be used like binary operators using the operator.

​

> def add x y = x + y

> 2 `add` 3

5

bottom of page