FB_JS
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfbjs
- Last revised: 2023-11-26
Intrinsic define set by the compiler
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.
Examples
start GeSHi
vb
#IFDEF __FB_JS__
'...instructions only for emscripten target...
#ELSE
'...instructions not for emscripten target...
#ENDIFend GeSHi
Differences from QB
- New to FreeBASIC
See also
Back to DocToc