summaryrefslogtreecommitdiffstats
path: root/vendor/clap/examples/tutorial_builder/03_03_positional.rs
blob: f652d27ca5472b1108def5d87e3643a7521d96bd (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"))
        .get_matches();

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