The Reflex Preprocessor¶
Reflex source files are preprocessed prior to compilation. There are a few useful preprocessor directives which are available within a reflex source file. These directives are borrowed from the C language;
Preprocessor keywords
define
ifdef/endif
include
Examples¶
#define VAL 1234
#define DEBUG
#ifdef DEBUG
...
#endif
#include "myroutines.reflex"
#include <a40PinModule.reflex>