diff options
Diffstat (limited to 'runtime.h')
| -rw-r--r-- | runtime.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,10 +1,13 @@ #pragma once #include "value.h" #include <vector> +#include "token.h" class Runtime { private: std::vector<Value> m_values; + bool runCommand(const Token& token); + public: Runtime(); void run(std::vector<Token>& tokens); |
