Operators
From Mesham
Jump to navigationJump to search
Operators
- +
- -
- Multiplication
- % Division
- << Bit shift to left
- >> Bit shift to right
- == Test for equality
- != Test for inverse equality
- = Test of equality on strings
- < Test lvalue is smaller than rvalue
- > Test lvalue is greater than rvalue
- <= Test lvalue is smaller or equal to rvalue
- >= Test lvalue is greater or equal to rvalue
- || Logical OR
- && Logical AND