blob: 7f23649d68566c547b3afb3029edd89ee450da6d [file] [log] [blame]
use clap::{arg, command, ArgAction};
fn main() {
let matches = command!() // requires `cargo` feature
.arg(arg!(-v - -verbose).action(ArgAction::Count))
.get_matches();
println!("verbose: {:?}", matches.get_count("verbose"));
}