Skip to content

Instantly share code, notes, and snippets.

@korzio
Last active February 6, 2021 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save korzio/76492131637d5fb12f2b92cf26009bb2 to your computer and use it in GitHub Desktop.
Save korzio/76492131637d5fb12f2b92cf26009bb2 to your computer and use it in GitHub Desktop.
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