summaryrefslogtreecommitdiffstats
path: root/third_party/rust/clap/examples/tutorial_derive/02_apps.md
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/clap/examples/tutorial_derive/02_apps.md')
-rw-r--r--third_party/rust/clap/examples/tutorial_derive/02_apps.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/rust/clap/examples/tutorial_derive/02_apps.md b/third_party/rust/clap/examples/tutorial_derive/02_apps.md
new file mode 100644
index 0000000000..b5ae1147fd
--- /dev/null
+++ b/third_party/rust/clap/examples/tutorial_derive/02_apps.md
@@ -0,0 +1,16 @@
+```console
+$ 02_apps_derive --help
+Does awesome things
+
+Usage: 02_apps_derive[EXE] --two <TWO> --one <ONE>
+
+Options:
+ --two <TWO>
+ --one <ONE>
+ -h, --help Print help
+ -V, --version Print version
+
+$ 02_apps_derive --version
+MyApp 1.0
+
+```