Files
waiig_monkey/token/token.go
T

9 lines
95 B
Go

package token
type TokenType string
type Token struct {
Type TokenType
Literal string
}