diff options
| author | jstmaxlol <87650746+jstmaxlol@users.noreply.github.com> | 2025-05-22 21:54:10 +0200 |
|---|---|---|
| committer | jstmaxlol <87650746+jstmaxlol@users.noreply.github.com> | 2025-05-22 21:54:10 +0200 |
| commit | b5298f3e8c64170d681c7b666ddb39216d98723b (patch) | |
| tree | 114ac7090cc667c1cc07134e9c718bd984f28880 | |
| parent | 64d070ac0e3d2fb47439eed6704507d874fc01ed (diff) | |
bash bug hotfix
| -rw-r--r-- | xsc.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 +} |