aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMikkel Hjortshøj <fyoucon@gmail.com>2019-10-19 18:57:23 +0200
committerGitHub <noreply@github.com>2019-10-19 18:57:23 +0200
commitd7c8a3a9dd5b75987bd427c73eeba11306b08d41 (patch)
tree32453d870c9dd6ff7eeed9e594d8b0cac631ef1f /src
parent2afe4bea67ff50c2ad41ff7c3ba7fbdc18748746 (diff)
parent10b109e25f05862f478ba4c82f18ba22c8289017 (diff)
Merge pull request #445 from Tetralux/patch-2
Clarify that you can pass a directory to `odin build`
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 78859e04e..acb580ca2 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -160,8 +160,9 @@ void usage(String argv0) {
print_usage_line(0, "Usage:");
print_usage_line(1, "%.*s command [arguments]", LIT(argv0));
print_usage_line(0, "Commands:");
- print_usage_line(1, "build compile .odin file as executable");
- print_usage_line(1, "run compile and run .odin file");
+ print_usage_line(1, "build compile .odin file, or directory of .odin files, as an executable.");
+ print_usage_line(1, " one must contain the program's entry point, all must be in the same package.");
+ print_usage_line(1, "run same as 'build', but also then runs the newly compiled executable.");
print_usage_line(1, "check parse and type check .odin file");
print_usage_line(1, "query parse, type check, and output a .json file containing information about the program");
print_usage_line(1, "docs generate documentation for a .odin file");