diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2016-08-31 19:50:57 +0000 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2016-08-31 19:50:57 +0000 |
| commit | 1ba5c17a68f13633d6a20785c722b22032ba45c4 (patch) | |
| tree | 40b3aac27fe9af4c9d82965d714acde0b5508435 /runtime.cpp | |
| parent | b7eeb6676b8f67be7cc1560d9586f2672a5ad0eb (diff) | |
Add runtime and value classes
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) { + + } +} |
