and | && |
or | || |
not | ! |
xor |
if (COND and COND) { } if (COND or COND) { } if (not COND) { }
See also perldoc perlop for precedence and associativity tables and/or use () to define the order of evaluation.
and | && |
or | || |
not | ! |
xor |
if (COND and COND) { } if (COND or COND) { } if (not COND) { }
See also perldoc perlop for precedence and associativity tables and/or use () to define the order of evaluation.