#ifdef
#ifdef IDname
#endif
or
#ifndef IDname
#endif
This statement directs the pre-processor to copy the contents of file
between the ifdef and the endif into the source to be compiled by the BASIC
compiler, if IDname is defined . #ifndef copies the
statements if IDname has not been defined.
These statements may nest.