Initial commit

This commit is contained in:
2025-09-30 21:29:06 +10:00
commit 39735ed696
41 changed files with 1692 additions and 0 deletions

13
src/data/data.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include <map>
#include <string>
#include <vector>
#include "../defs/defs.h"
namespace data {
extern std::map<std::string, Value> vars;
extern std::map<std::string, std::vector<Instruction>> functions;
void modifyValue(std::string key, Value value);
Value getValue(std::string key);
}