Usage:

x % y

Returns:

The remainder of x / y

This operator only works with integer values - with x and y being truncated to integers prior to the remainder being calculated. Fractional modulo can be achieved using the %% operator.

See also:

- %%