NOT
Syntax
Command
Mandatory parameter Optional parameter Mandatory keyword Optional keyword |
NOT <Condition>
Description
Inverts a boolean condition.
Diagram

Returned value type
Boolean
Parameters
| Parameter | Description |
| <Condition> | Expression evaluating to true or false. |
Examples
error := NOT True
if not numeric (sd-entry)
exit
endif
s-month := 1
loop while not s-month > 12
proc-month ()
s-month += 1
endloop
if not numeric (sd-entry)
exit
endif
s-month := 1
loop while not s-month > 12
proc-month ()
s-month += 1
endloop
