====== PRAGMA ====== //Since version 2.1// Syntax: pragma = The ''PRAGMA'' directive sets a compiler option. You can find the list of the supported options [[compiler_options|here]]. If the option is not supported, a warning will be emitted. **Note**: ''PRAGMA'' directives must be placed in the beginning of the program. The only statement allowed before a ''PRAGMA'' statement is ''[[rem|REM]]''. Example: pragma civars = 1 The above will instruct the compiler to treat variable names case-insensitive.