aboutsummaryrefslogtreecommitdiffstats
path: root/runtime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'runtime.cpp')
-rw-r--r--runtime.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/runtime.cpp b/runtime.cpp
new file mode 100644
index 0000000..8478da7
--- /dev/null
+++ b/runtime.cpp
@@ -0,0 +1,11 @@
+#include "runtime.h"
+
+Runtime::Runtime() {
+
+}
+
+void Runtime::run(std::vector<Token>& tokens) {
+ for (auto& token : tokens) {
+
+ }
+}