package tokenizer type TokenType int const ( TokenOpenParen TokenType = iota TokenCloseParen TokenVariable TokenSlash TokenDot ) type Token struct { Index int Type TokenType Value string }