![]() |
![]() |
![]() |
![]() |
![]() |
The keyword not is the unary operator that returns the value true if its operand is false and returns the value false if the operand is true.
Related keywords:
not |
Example 1:
const boolean c_malign := false;
var boolean v_contraire := not c_malign;
The varaible v_contraire will have the initial value true.
BNF definition of not