aboutsummaryrefslogtreecommitdiffstats
path: root/alee.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'alee.cpp')
-rw-r--r--alee.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/alee.cpp b/alee.cpp
index 38b16e4..d8a0cc8 100644
--- a/alee.cpp
+++ b/alee.cpp
@@ -94,6 +94,8 @@ void parseFile(Parser& parser, State& state, std::istream& file)
while (file.good()) {
std::string line;
std::getline(file, line);
+ if (line == "bye")
+ exit(0);
parseLine(parser, state, line);
}
}