| Syntax Elements | Source | Preprocessor | Types | Expressions | Backtick Expressions | Statements | Class | Logging |
CfgScript Source files normally ends with .csf .
SourceText
: Comments
| Preprocessor
| Statement*
;
The source files are normal text files.
The encoding of the source text file
will be configured via the standard
encoding settings of ACDK.
Comments
: '/*' .* '*/'
| '//' .* '\n'
;
CfgScript support the standard Java/C++ comments:
// One line comment
/*
Multiline
comments
*/
|
|