update parser

This commit is contained in:
Christoph Brandau
2025-07-25 16:02:39 +02:00
parent 94181497bd
commit c34dac847a
16 changed files with 168 additions and 1667 deletions
+10
View File
@@ -0,0 +1,10 @@
from tools.parser import Parser
def main():
parser = Parser(True)
parser.parse("puts hello")
if __name__ == "__main__":
main()