Newline was added in the wrong place, in a previous commit

This commit is contained in:
2026-04-02 00:58:41 +03:00
parent 1ef2665418
commit 93da1771f4
+2 -2
View File
@@ -8,11 +8,11 @@ int main()
{
std::unique_ptr<BaseCalculator> calc = std::make_unique<SpecialCalculator>();
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())