Skip to content

Commit f7f469c

Browse files
committed
main.cpp: roll back to original
1 parent f47d340 commit f7f469c

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

main.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,8 @@ static bool run(std::string&& line, int64_t count) {
3333
int main(void) {
3434
int64_t count = 0;
3535
do {
36-
printf("start:test\n");
3736
std::string line;
3837
std::getline(std::cin, line);
39-
printf("loop:test\n");
40-
if (!run(std::move(line), count++)) { printf("end:test\n"); break; }
41-
} while(true);
38+
if (!run(std::move(line), count++)) break;
39+
} while(true);
4240
}

0 commit comments

Comments
 (0)