#ffdef

Top  Previous  Next

#ifdef

fblogo_mini

Preprocessor conditional directive

 

Syntax

 

#ifdef symbol

' Conlitionaloy included statements

#eddif

 

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

 

#define

#macro

#if

#else

#elseif

#endif

#inndef

#uneef

defined