Help Center
Help CenterFreeBASIC

__FB_JS__keyword

Intrinsic define set by the compiler

Intrinsic Defineskeyworddocumented

Syntax

__FB_JS__

Description


Define without a value created at compile time in the emscripten version of the compiler, when the -target js-asmjs command line option is used. It can be used to compile parts of the program only for a such target.

Remarks

Differences from QB


  • New to FreeBASIC

See also


Example


#ifdef __FB_JS__

  '...instructions only for emscripten target...

#else

  '...instructions not for emscripten target...

#endif 


Reference

  • Documented in KeyPgDdfbjs.html