REFERENCE
Syntax
@If [Value] [Commands] [@Else [Commands]] @EndIf
Where:
This example executes the Delete command, only if [DeleteDoc] is defined in the NOTES.INI file and is non-zero; otherwise, the Add command is executed:
@If [DeleteDoc]
Delete 1
@Else
Add 1
@EndIf
Related topics