add dictionaries and add accessing with a value

This commit is contained in:
2025-06-12 04:37:07 +01:00
parent f8207702e1
commit b05408ebec
10 changed files with 190 additions and 38 deletions

View File

@@ -38,7 +38,8 @@ typedef enum {
AST_BOOLEAN,
AST_DOWRAP,
AST_OPERATION,
AST_LIST
AST_LIST,
AST_DICTIONARY
} ValueType;
extern const char* ValueTypeNames[];