Controls conditional compilation of source code.
$IFNDEF
symbol
statement
.
.
.
{$ELSE
statement
.
.
.}
$ENDIF
symbol The name of a symbol.
statement Any valid DataBasic statement.
When the module is compiled:
Any number of valid DataBasic statements can be included or excluded following a $IFNDEF or $ELSE.
The $IFNDEF statement (with or without $ELSE) must be terminated with $ENDIF.
$IFDEF statement, $DEFINE statement, EQUATE statement, $UNDEFINE statement.
$IFNDEF RELEASE PRINT COUNT, MYVALUE $ENDIF
If the symbol RELEASE has not been defined, includes code that prints the values of the COUNT and MYVALUE variables; otherwise omits this line.