Resilient parsing!

This commit is contained in:
etc404
2026-04-26 20:50:40 -06:00
parent 7d6b339cc6
commit 00d1ff11d7
4 changed files with 43 additions and 27 deletions
+2 -1
View File
@@ -5,8 +5,9 @@ def main():
interpreter = reader.Reader()
# REPL Loop
while True:
expression: str = input("> ")
expression: str = input(">>> ")
interpreter.tokenize(expression)
interpreter.run()
if __name__ == "__main__":
main()