Adding a basic struct to represent the lexer

This commit is contained in:
2026-03-20 19:56:27 +01:00
parent f141d2d07f
commit 29820d582e
+8
View File
@@ -0,0 +1,8 @@
package lexer
type Lexer struct {
input string
position int
readPosition int
ch byte
}