summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjstmaxlol <87650746+jstmaxlol@users.noreply.github.com>2025-05-22 21:54:10 +0200
committerjstmaxlol <87650746+jstmaxlol@users.noreply.github.com>2025-05-22 21:54:10 +0200
commitb5298f3e8c64170d681c7b666ddb39216d98723b (patch)
tree114ac7090cc667c1cc07134e9c718bd984f28880
parent64d070ac0e3d2fb47439eed6704507d874fc01ed (diff)
bash bug hotfix
-rw-r--r--xsc.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/xsc.cpp b/xsc.cpp
index 847ecc4..020d54f 100644
--- a/xsc.cpp
+++ b/xsc.cpp
@@ -64,6 +64,7 @@ int main(int argc, char** argv) {
}
op = argv[2][0];
return calculate(n1, op, n2);
+ std::cout << "\n";
}
// if only 1 argument and not help
@@ -109,4 +110,4 @@ void usage() {
<< "'xsc <num1> <(+|-|x|/|%|^)> <num2>' | outputs expression's result\n"
<< "'xsc <num1> r' | outputs the square root of num1\n"
;
-} \ No newline at end of file
+}