first working demo

This commit is contained in:
2024-06-30 03:24:19 -04:00
parent 6dcf0f41e8
commit 12b74f12d4
5 changed files with 22 additions and 46 deletions

View File

@ -9,7 +9,7 @@ void display::clear() {
void display::print(std::ostream &out) const {
for (auto line : contents)
out << line << std::endl;
out << line;
}
void display::print_line(const std::string &line, const int linenum) {