summaryrefslogtreecommitdiffstats
path: root/vendor/clap/examples/tutorial_derive/03_01_flag_count.rs
blob: 2b8a453ed2485481aa59a4711e84b7df5454a5a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::Parser;

#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {
    #[arg(short, long, action = clap::ArgAction::Count)]
    verbose: u8,
}

fn main() {
    let cli = Cli::parse();

    println!("verbose: {:?}", cli.verbose);
}