diff options
Diffstat (limited to 'vendor/clap/examples/tutorial_builder/02_crate.rs')
-rw-r--r-- | vendor/clap/examples/tutorial_builder/02_crate.rs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/vendor/clap/examples/tutorial_builder/02_crate.rs b/vendor/clap/examples/tutorial_builder/02_crate.rs deleted file mode 100644 index ad6bb47..0000000 --- a/vendor/clap/examples/tutorial_builder/02_crate.rs +++ /dev/null @@ -1,18 +0,0 @@ -use clap::{arg, command}; - -fn main() { - // requires `cargo` feature, reading name, version, author, and description from `Cargo.toml` - let matches = command!() - .arg(arg!(--two <VALUE>).required(true)) - .arg(arg!(--one <VALUE>).required(true)) - .get_matches(); - - println!( - "two: {:?}", - matches.get_one::<String>("two").expect("required") - ); - println!( - "one: {:?}", - matches.get_one::<String>("one").expect("required") - ); -} |