feat(lexer): rework with struct token done

This commit is contained in:
Matteo Flebus 2026-01-13 22:00:02 +01:00
parent 204bb515af
commit 8262fdece8
2 changed files with 65 additions and 14 deletions

View file

@ -5,6 +5,7 @@
enum token_type
{
TOKEN_NULL = 0,
TOKEN_EOF,
TOKEN_WORD,
TOKEN_NEWLINE,