Addition (+)
  Subtraction (-)
  Multiplication (*)
  Division (/)
  Modulo (%)
  Power (**)
  Negation (-)

  Equal (==)
  Not equal (!=)
  Greater than (>)
  Greater than or equal (>=)
  Less than (<)
  Less than or equal (<=)

  Logical not (!)
  Logical and (&&)
  Logical or (||)
  Logical xor (^^)

  Bitwise not (~)
  Bitwise and (&)
  Bitwise or (|)
  Bitwise xor (^)
  Shift right (>>)
  Shift left (<<)

  Assignment (=)