feat: while and for loops support for parser, plus new ASTs, new tokens and fixes inside parser

This commit is contained in:
Gu://em_ 2026-01-30 19:48:31 +01:00
parent f8b91d4da3
commit 423793903d
9 changed files with 341 additions and 35 deletions

View file

@ -16,6 +16,7 @@ enum ast_type
AST_WORD,
AST_PIPE,
AST_NEG,
AST_LOOP,
AST_ASSIGNMENT
};