Added string literals in tokeniser

Doesn't do much, invalid for most operations.
This commit is contained in:
2023-11-11 10:16:06 +00:00
parent bd6fb54e31
commit c9f684cc7d
3 changed files with 24 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ typedef enum TokenType
TOKEN_STAR,
TOKEN_LITERAL_NUMBER,
TOKEN_LITERAL_CHAR,
TOKEN_LITERAL_STRING,
TOKEN_NOOP,
TOKEN_HALT,
TOKEN_PUSH,