not - logical not

not A


not calculates logical not of A.
A must be a Boolean value.


if( not x == 3 )
{ ... }
This will run the block if x isn't equal to 3.


See also
and | or | xor