From c4cae690deddcb8a7fc6a537816e832525ca0e86 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Wed, 31 Aug 2016 20:05:10 +0000 Subject: Develop runtime --- main.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index 0e8e367..9de9ce8 100644 --- a/main.cpp +++ b/main.cpp @@ -3,6 +3,7 @@ #include #include #include "parser.h" +#include "runtime.h" std::string readFile(std::string& filename) { std::ifstream t(filename); @@ -24,5 +25,8 @@ int main(int argc, char** argv) { Parser parser(input); parser.printTokens(); + Runtime runtime; + runtime.run(parser.getTokens()); + return 0; } -- cgit v1.3