2022-02-15 14:33:38 +00:00
|
|
|
use clap::{arg, command};
|
2021-11-30 18:30:19 +00:00
|
|
|
|
|
|
|
fn main() {
|
2022-02-15 14:33:38 +00:00
|
|
|
let matches = command!().arg(arg!(-v --verbose ...)).get_matches();
|
2021-11-30 18:30:19 +00:00
|
|
|
|
|
|
|
println!("verbose: {:?}", matches.occurrences_of("verbose"));
|
|
|
|
}
|