diff --git a/main.cpp b/main.cpp index 573875c..2abeaa9 100644 --- a/main.cpp +++ b/main.cpp @@ -8,11 +8,11 @@ int main() { std::unique_ptr calc = std::make_unique(); - std::cout << "Initializing calculator"; + std::cout << "Initializing calculator\n"; while (true) { - std::cout << "What's your next input? (+,-,*,/,%,$,q,p)" << std::endl; + std::cout << "What's your next input? (+,-,*,/,%,$,q,p): "; auto command = resolveCommand(); if (command.shouldTerminate())