mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
14 lines
352 B
Rust
14 lines
352 B
Rust
use clap::{command, Arg, ArgAction};
|
|
|
|
fn main() {
|
|
let matches = command!() // requires `cargo` feature
|
|
.arg(
|
|
Arg::new("name")
|
|
.short('n')
|
|
.long("name")
|
|
.action(ArgAction::Append),
|
|
)
|
|
.get_matches();
|
|
|
|
println!("name: {:?}", matches.get_one::<String>("name"));
|
|
}
|