1 2 3 4 5 6 7 8 9
package tparse // Token represents a token in a program type Token struct { Type int Data string Line int Char int }