diff options
Diffstat (limited to 'xsc.cpp')
| -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 +} |