| 123456789101112131415161718 |
- #define NAME 1
- #define CURLY_OPEN 2
- #define CURLY_CLOSE 3
- #define ROUND_OPEN 4
- #define ROUND_CLOSE 5
- #define SEMICOLON 6
- #define ARROW 7
- #define IF 8
- #define ELIF 9
- #define ELSE 10
- #define DOT 11
- #define COMMA 12
- #define COLON 13
- #define BRACKET_OPEN 14
- #define BRACKET_CLOSE 15
- #define STRING 16
- #define PROCESS 17
- #define TEMPLATE 18
|