#ENDIF
Preprocessor conditional directive
Syntax:
#endif
Description:
Examples:
#DEFINE DEBUG_LEVEL 1
#IF (DEBUG_LEVEL = 1)
'Conditional statements
#ENDIF
#IF (DEBUG_LEVEL = 1)
'Conditional statements
#ENDIF
Differences from QB:
- New to FreeBASIC
See also:
Back to Preprocessor