Time to get started with the interpreter
[fridhskrift.git] / frith / interpreter.hpp
blobf48b2198bf623d679584a15e87052cbf15e239a6
1 #pragma once
3 #include <frith/scope.hpp>
5 namespace frith
7 class interpreter
9 public:
10 interpreter();
11 bool execute(std::string const & data);
12 bool execute_file(std::string const & path);
14 private: