9 lines
113 B
Go
9 lines
113 B
Go
package lexer
|
|
|
|
type Lexer struct {
|
|
input string
|
|
position int
|
|
readPosition int
|
|
ch byte
|
|
}
|