add while loop

This commit is contained in:
William Bell
2025-08-28 04:07:19 +01:00
parent c322d5680f
commit fff4f6bcb5
9 changed files with 207 additions and 6 deletions

View File

@@ -49,7 +49,8 @@ typedef enum {
AST_LIST,
AST_DICTIONARY,
AST_FUNCTION,
AST_RETURN
AST_RETURN,
AST_WHILE
} ValueType;
extern const char *ValueTypeNames[];