11 lines
569 B
Text
11 lines
569 B
Text
Listed in order of precedence:
|
|
|
|
(Highest Precedence) ^ Exponentiation
|
|
% Modulo
|
|
/ Division
|
|
* Multiplication
|
|
- Subtraction
|
|
+ Addition
|
|
== != < <= >= > Comparisons (all have equal precedence)
|
|
&& and Logical AND with short-circuit
|
|
(Lowest Precedence) || or Logical OR with short-circuit
|