feat: reducer, but doesn`t work

This commit is contained in:
2025-12-25 00:30:15 -05:00
parent 2c3ce9baf7
commit d5999e8e1c
15 changed files with 228 additions and 150 deletions

View File

@@ -5,13 +5,13 @@ type TokenType int
const (
TokenOpenParen TokenType = iota
TokenCloseParen
TokenAtom
TokenVariable
TokenSlash
TokenDot
)
type Token struct {
Index int
Type TokenType
Type TokenType
Value string
}