mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
14 lines
355 B
Rust
14 lines
355 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::Count),
|
|
)
|
|
.get_matches();
|
|
|
|
println!("verbose: {:?}", matches.get_count("verbose"));
|
|
}
|