Compiler Directives
Preprocessor Directives
For conditional compilation and setting compiler flags. Symbols are defined in project settings or compiler options
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: |
|
Line Directives
F# generation code can use this directive to indicate correct line numbers from originating code.
TODO: Need example
Compiler Directives
Enables lightweight syntax. On by default See Verbose syntax for details.
When off (not commonly used) uses keywords begin
, end
, in
to indicate blocks
rather than indentation.
1:
|
|
Compiler Options
Command-line options provided to the compiler. See original language reference for details.
TODO