Operators
Assignment operators: = += -= *= /= %= <<= >>= >>>= &= ^= |=
Supports the usual arithmetic operators, and also %, ++, and --
Concatenation operator: +
Bit operators: & | ^ ~ << >> >>>
Relational operators: == > >= < <= !=
Logical operators: && || !