started work on parser

This commit is contained in:
SpookyDervish
2025-10-13 07:07:32 +11:00
parent 07ca0fcc32
commit d4aa448712
3 changed files with 64 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ LEXER_DEBUG: bool = True
if __name__ == "__main__":
with open("tests/lexer.pla") as f:
with open("tests/parser.pla") as f:
code: str = f.read()
if LEXER_DEBUG: