diff --git a/token/token.go b/token/token.go new file mode 100644 index 0000000..e75cafc --- /dev/null +++ b/token/token.go @@ -0,0 +1,8 @@ +package token + +type TokenType string + +type Token struct { + Type TokenType + Literal string +}