diff options
| author | Michael Tews <git@tews.dev> | 2024-06-19 06:07:54 +0200 |
|---|---|---|
| committer | Michael Tews <michael@tews.dev> | 2026-04-12 11:11:02 +0200 |
| commit | 734e8e7a7159dd933c12e97b53984d6686c7cb22 (patch) | |
| tree | f12e28749ddba9516fd4f4edf3a042500e1dedbc /token/token.go | |
| parent | 0e3db367f467a2fd9b1ce0266699cce31c3c60eb (diff) | |
feat(lexer): added new tokens
added == and !=
Diffstat (limited to 'token/token.go')
| -rw-r--r-- | token/token.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/token/token.go b/token/token.go index a168b8f..63d5f41 100644 --- a/token/token.go +++ b/token/token.go @@ -19,6 +19,9 @@ const ( LT = "<" GT = ">" + EQ = "==" + NOT_EQ = "!=" + // Delimiters COMMA = "," SEMICOLON = ";" |
