Table A.1 lists the operator preference order. The table includes the operators grouped by their type of operation.
| Arithmetic | Comparison | Logical |
| Exponentiation (^) | Equality (=) | Not |
| Negation (-) | Inequality (<>) | And |
| Multiplication and division (*, /) | Less than (<) | Or |
| Integer division (\) | Greater than (>) | Xor |
| Modulus arithmetic (Mod) | Less than or equal to (<=) | Eqv |
| Addition and subtraction (+, -) | Greater than or equal to (>=) | Imp |
| String concatenation (&) | Like, Is |
|