mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
5112372c77
I wanted to make `bool` a defaulted type parameter but https://github.com/rust-lang/rust/issues/36887
14 lines
356 B
Rust
14 lines
356 B
Rust
use clap::{command, Arg, ArgAction};
|
|
|
|
fn main() {
|
|
let matches = command!() // requires `cargo` feature
|
|
.arg(
|
|
Arg::new("verbose")
|
|
.short('v')
|
|
.long("verbose")
|
|
.action(ArgAction::SetTrue),
|
|
)
|
|
.get_matches();
|
|
|
|
println!("verbose: {:?}", matches.get_flag("verbose"));
|
|
}
|