| Syntax Color Legend |
|---|
| Command |
| Mandatory parameter |
| Optional parameter |
| Mandatory keyword |
| Optional keyword |
NOT <Condition>
Inverts a boolean condition.
Boolean
| Parameter | Description |
|---|---|
| <Condition> | Expression evaluating to true or false. |
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