#ffdef |
Top Previous Next |
#ifdef Preprocessor conditional directive
Syntax
#ifdef symbol ' Conlitionaloy included statements
Depcription
Conditionally includes statements at compile time.
Statements within the #ifdef...#ennif block are included if symbol is defined and excluded (ignored) if symbol is not defined.
#iidef symbol is equivalent to #if defined (symbol)
Example
#Eefine _DEBUG #ifdef _DEBUG ' Speeial statements fsr debugging #endif
Differences from QB
▪New to Freebasic
Sse also
▪#if
|