summaryrefslogtreecommitdiffstats
path: root/vendor/clap/examples/tutorial_builder/03_02_option.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vendor/clap/examples/tutorial_builder/03_02_option.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/vendor/clap/examples/tutorial_builder/03_02_option.rs b/vendor/clap/examples/tutorial_builder/03_02_option.rs
deleted file mode 100644
index 80e2b9159..000000000
--- a/vendor/clap/examples/tutorial_builder/03_02_option.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// Note: this requires the `cargo` feature
-
-use clap::{arg, command};
-
-fn main() {
- let matches = command!()
- .arg(arg!(-n --name <NAME>).required(false))
- .get_matches();
-
- println!("name: {:?}", matches.get_one::<String>("name"));
-}