aboutsummaryrefslogtreecommitdiffstats
path: root/src/runtime.h
diff options
context:
space:
mode:
authorjantuomi <jans.tuomi@gmail.com>2016-09-01 14:29:59 +0300
committerjantuomi <jans.tuomi@gmail.com>2016-09-01 14:29:59 +0300
commit2f4c8ad33b64a8ca3145f4e6b6bd85cf89cf1006 (patch)
tree0650945f0bb8bff20cf5e80b9338d98a1d030809 /src/runtime.h
parent53e30cdd779f12ba5b19a59e9e18abf69c795ad5 (diff)
Add functions
Diffstat (limited to 'src/runtime.h')
-rw-r--r--src/runtime.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/runtime.h b/src/runtime.h
index 16c1c28..2a32220 100644
--- a/src/runtime.h
+++ b/src/runtime.h
@@ -9,10 +9,11 @@ class Runtime {
void runCommand(const Token& token);
void doSum();
+ void doPrint() const;
+ void doPrintAscii() const;
public:
Runtime();
void initValues(const std::vector<int>& values);
void run(std::vector<Token>& tokens);
- void printValues() const;
};