comments
Some checks failed
Build / build (push) Failing after 1m10s
Test / build (push) Failing after 11m40s

This commit is contained in:
Chuck Smith
2024-03-16 19:31:23 -04:00
parent 7463b3af39
commit 83ad72a7fc
7 changed files with 106 additions and 6 deletions

View File

@@ -11,6 +11,9 @@ const (
ILLEGAL = "ILLEGAL"
EOF = "EOF"
// COMMENT a line comment, e.g: # this is a comment
COMMENT = "COMMENT"
// Identifiers + literals
IDENT = "IDENT" // add, foobar, x, y
INT = "INT" // 123456