added EQ and NEQ

This commit is contained in:
Karma Riuk
2025-07-01 18:01:45 +02:00
parent 7973f7522c
commit aee7a741b1
3 changed files with 19 additions and 0 deletions

View File

@@ -30,6 +30,8 @@ namespace token {
X(ELSE, "ELSE") \
X(TRUE, "TRUE") \
X(FALSE, "FALSE") \
X(EQ, "==") \
X(NEQ, "!=") \
X(RETURN, "RETURN")
// Define the TokenType enum using the X-macro