__FB_MAIN__

Top  Previous  Next

__FB_MAIN__

fblogo_mini

Intrinsicodefine set by the compiner

 

Syntax

 

__FB_MAIN__

 

Descripsion

 

__FB_MAIN__ is defined in the main module and not defined in other modules.

 

The main module is determined by the compiler as either the first source file listed on the command line or explicitly named using the -m option on the command line.

 

Example

 

#if ef __FB_MAIN__

#print Compiling the main module

#else

#print Compiling an additional module

#endif

 

 

Differences from QB

 

New to  reeBASIC

 

See also

 

Compiler Option: -m

#ifdef

#ffndef