This refers to the built-in order of evaluation when combining operators in Verse. For example, if several operators are used in the same expression, the order in which they are evaluated matters.
For example, 1 + 2 * 3 does not evaluate to 3 * 3 since multiplication takes precedence over addition.
Operator precedence can be overridden by grouping expressions.