aboutsummaryrefslogtreecommitdiffstats
path: root/runtime.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime.h')
-rw-r--r--runtime.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/runtime.h b/runtime.h
new file mode 100644
index 0000000..f1b050d
--- /dev/null
+++ b/runtime.h
@@ -0,0 +1,11 @@
+#pragma once
+#include "value.h"
+#include <vector>
+
+class Runtime {
+ private:
+ std::vector<Value> m_values;
+ public:
+ Runtime();
+ void run(std::vector<Token>& tokens);
+};