3cd55cf5a4
- Added more complicated Animation definition expression - Added 0.3d compiler lexer ignores (so it will still parse the 0.3d compatible sections of KLL 0.5) - Improved funcparserlib/parser.py to include next token (if available) on NoParseError
10 rader
180 B
Plaintext
10 rader
180 B
Plaintext
Variable = 1;
|
|
Array[] = a b c "b c" 3;
|
|
Index[5] = "this text" thing; # Single element
|
|
Index[6] = moar;
|
|
|
|
Variable => Variable_define;
|
|
Array => Array_define;
|
|
Index => Index_define;
|
|
|