Operators

The following operators are supported:

Operator Precedence

The following operator precedence levels are supported (ordered from highest binding to lowest):

  1. ( expression )
  2. a ! and - a
  3. a >> b and a << b
  4. a ** b
  5. a * b, a / b and a % b
  6. a + b and a - b
  7. a == b, a <> b, a <= b, a >= b, a < b, a > b

Basically, what this means is that the usual mathematical rules apply: expressions in brackets have highest precedence, + and - has a lower precedence than * and /

Go Back