aboutsummaryrefslogtreecommitdiffstats
path: root/runtime.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime.h')
-rw-r--r--runtime.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/runtime.h b/runtime.h
deleted file mode 100644
index 3572391..0000000
--- a/runtime.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-#include <vector>
-#include <stack>
-#include "token.h"
-
-class Runtime {
- private:
- std::stack<int> m_values;
- bool runCommand(const Token& token);
-
- public:
- Runtime();
- void run(std::vector<Token>& tokens);
-};