From 93da1771f4bdf08ea1d49383a3ffad08a748dc4d Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 2 Apr 2026 00:58:41 +0300 Subject: [PATCH] Newline was added in the wrong place, in a previous commit --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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())