The binary operators are listed in the following table in their order of precedence. Operators with higher precedence appear first.
| Operator | Meaning |
|---|---|
| * | Multiplication |
| / | Integer division |
| mod (%) | Modulus |
| + | Addition |
| - | Subtraction |
| and | Bitwise Boolean AND |
| xor | Bitwise Boolean exclusive OR |
| or | Bitwise Boolean OR |