Files
waiig_monkey/lexer/lexer.go
T

9 lines
113 B
Go

package lexer
type Lexer struct {
input string
position int
readPosition int
ch byte
}