From 1ba5c17a68f13633d6a20785c722b22032ba45c4 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Wed, 31 Aug 2016 19:50:57 +0000 Subject: Add runtime and value classes --- runtime.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 runtime.cpp (limited to 'runtime.cpp') 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& tokens) { + for (auto& token : tokens) { + + } +} -- cgit v1.3