Arkiverade
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
kll/examples/assignment.kll
Jacob Alexander 3cd55cf5a4 Updating KLL 0.5c lexer
- 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
2016-10-09 22:00:30 -07:00

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;