summaryrefslogtreecommitdiffstats
path: root/vendor/clap/examples/tutorial_builder/03_02_option.rs
blob: e9ba3e41a9325b0ae89dc4d704a6d6430b7baa9b (plain)
1
2
3
4
5
6
7
8
9
use clap::{command, Arg};

fn main() {
    let matches = command!() // requires `cargo` feature
        .arg(Arg::new("name").short('n').long("name"))
        .get_matches();

    println!("name: {:?}", matches.get_one::<String>("name"));
}