Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 729 Bytes

operators.md

File metadata and controls

15 lines (14 loc) · 729 Bytes

Operators

Numeric Operator Logical Operator
+ Addition == Equal to
- Subtraction != Not equal to
/ Division >= Greater than
\ Integer Division >= Greater than or equal to
* Multiplication <= Less than
% mod <= Less than or equal to
^ Exponent && AND
& Bitwise AND || OR
| Bitwise OR ! NOT
~ Bitwise NOT ^^ XOR
<< Bitwise shift left >> Bitwise shift right