Defining some types to build our lexer

This commit is contained in:
2026-03-15 10:17:06 +01:00
parent 3aa49f3c81
commit a162b356a7
+8
View File
@@ -0,0 +1,8 @@
package token
type TokenType string
type Token struct {
Type TokenType
Literal string
}