Structs (IN BETA)

This commit is contained in:
2025-10-04 20:37:55 +10:00
parent b3950dcd62
commit 0057d73215
13 changed files with 322 additions and 10 deletions

View File

@@ -8,6 +8,7 @@
namespace data {
extern std::vector<std::map<std::string, Value>> scopes;
extern std::map<std::string, Function> functions;
extern std::map<std::string, Struct> structs;
void modifyValue(std::string key, Value value);
Value getValue(std::string key);
void pushScope();