Previous: no | Keywords | Next: oct |
not is the negation operator. It is semantically equivalent to ǃ, but has very low precedence.
not EXPRESSION
OPERATOR not EXPRESSION
if ($a + 20 == 22 and not $a*5 == 30) { … };
[…]
}
Previous: no | Keywords | Next: oct |