22 lines
290 B
Plaintext
22 lines
290 B
Plaintext
The next table present operators from higher precedence (Evaluated first) to lower precedence.
|
|
|
|
Operator
|
|
. [] () {}
|
|
- ~ :Literal [list items]
|
|
++ - -
|
|
Start:End
|
|
* / %
|
|
+ -
|
|
<< >>
|
|
&
|
|
| ^
|
|
< > <= >=
|
|
= !=
|
|
not
|
|
and or
|
|
Assignment = += -= *= /= %=>>= <<= &= ^= |=
|
|
|
|
Example:
|
|
|
|
See 3+5*4 # prints 23
|