This commit is contained in:
Chuck Smith
2024-01-20 13:20:13 -05:00
parent 10821fc88a
commit 13c9062fed
9 changed files with 140 additions and 23 deletions

View File

@@ -12,8 +12,9 @@ const (
EOF = "EOF"
// Identifiers + literals
IDENT = "IDENT" // add, foobar, x, y
INT = "INT" // 123456
IDENT = "IDENT" // add, foobar, x, y
INT = "INT" // 123456
STRING = "STRING"
// Operators
ASSIGN = "="