# %

### Description

% is the module operator.

### Example

```
6 % 2
```

This returns the [remainder](https://en.wikipedia.org/wiki/Modulo_operation) of dividing 6 by 2, which is 0.
