diff options
Diffstat (limited to 'runtime.cpp')
| -rw-r--r-- | runtime.cpp | 11 |
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) { + + } +} |
