diff options
Diffstat (limited to '')
| -rw-r--r-- | src/moonp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/moonp.cpp b/src/moonp.cpp index 57c3d6d..e056aad 100644 --- a/src/moonp.cpp +++ b/src/moonp.cpp | |||
| @@ -94,7 +94,7 @@ int main(int narg, const char** args) { | |||
| 94 | " -e str Execute a file or raw codes\n" | 94 | " -e str Execute a file or raw codes\n" |
| 95 | " -t path Specify where to place compiled files\n" | 95 | " -t path Specify where to place compiled files\n" |
| 96 | " -o file Write output to file\n" | 96 | " -o file Write output to file\n" |
| 97 | " -s Use space in generated codes instead of tabs\n" | 97 | " -s Use spaces in generated codes instead of tabs\n" |
| 98 | " -m Generate minified codes\n" | 98 | " -m Generate minified codes\n" |
| 99 | " -p Write output to standard out\n" | 99 | " -p Write output to standard out\n" |
| 100 | " -b Dump compile time (doesn't write output)\n" | 100 | " -b Dump compile time (doesn't write output)\n" |
| @@ -501,7 +501,7 @@ int main(int narg, const char** args) { | |||
| 501 | std::ofstream output(file, std::ios::trunc | std::ios::out); | 501 | std::ofstream output(file, std::ios::trunc | std::ios::out); |
| 502 | output.write(minifiedCodes, size); | 502 | output.write(minifiedCodes, size); |
| 503 | output.close(); | 503 | output.close(); |
| 504 | std::cout << "Built Minified "sv << file << '\n'; | 504 | std::cout << "Minified built "sv << file << '\n'; |
| 505 | } | 505 | } |
| 506 | } else { | 506 | } else { |
| 507 | ret = 2; | 507 | ret = 2; |
