blob: e9ba3e41a9325b0ae89dc4d704a6d6430b7baa9b [file] [log] [blame]
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"));
}