summaryrefslogtreecommitdiff
path: root/token/token.go
diff options
context:
space:
mode:
Diffstat (limited to 'token/token.go')
-rw-r--r--token/token.go11
1 files changed, 9 insertions, 2 deletions
diff --git a/token/token.go b/token/token.go
index 4cd3a3d..7581e2f 100644
--- a/token/token.go
+++ b/token/token.go
@@ -9,8 +9,15 @@ const (
INT = "INT"
// Operators
- ASSIGN = "="
- PLUS = "+"
+ ASSIGN = "="
+ PLUS = "+"
+ MINUS = "-"
+ BANG = "!"
+ ASTERISK = "*"
+ SLASH = "/"
+
+ LT = "<"
+ GT = ">"
// Delimiters
COMMA = ","