MPL Documentation

NOT

NOT yields TRUE if the value is FALSE:
// The statement is executed only if condition is false, as not, reverses it to true:

   if not (A = 1) then writeln('Bingo!');
Source: Reserved Words
See Also:
or, and, xor.