#ENDIF
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgPpendif
- Last revised: 2023-10-02
Preprocessor conditional directive
Syntax
` #endif
`
Description
Ends a group of conditional directives
See #if, #ifdef, or #ifndef for examples of usage.
Examples
start GeSHi
vb
#DEFINE DEBUG_LEVEL 1
#IF (DEBUG_LEVEL = 1)
'Conditional statements
#ENDIFend GeSHi
Differences from QB
- New to FreeBASIC
See also
#define#macro#if#else#elseIf#elseIfdef#elseIfndef#ifdef#ifndef#undefdefined
Back to DocToc