Last active
February 6, 2021 18:11
-
-
Save korzio/76492131637d5fb12f2b92cf26009bb2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package token | |
type TokenType string | |
type Token struct { | |
Type TokenType | |
Literal string | |
} | |
const ( | |
// Literals | |
// 1343456 | |
INT = "INT" | |
// Operators | |
ASSIGN = "=" | |
PLUS = "+" | |
MINUS = "-" | |
BANG = "!" | |
ASTERISK = "*" | |
SLASH = "/" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment