|
|
|
|
|
|
welcome |
|
Precedence of Operators
Precedence of Operators
Parentheses and arguments to list operators
->
++ -- (autoincrement and autodecrement)
**
\ ! ~ + - (unary operators)
=~ !~
* / % x
+ - . (binary operators)
<< >>
named unary operators (-X filetests, rand )
< <= > >= lt le gt ge (the "unequal" ones)
== != <=> eq ne cmp (the "equal" ones)
&
|^
&&
||
.. ...
?: (ternary)
= += -= .= (and similar assignment operators)
, =>
list operators (rightward)
not
and
or xor
|
|
|
|
|
|
|
|
|
|