mirror of
https://github.com/clap-rs/clap.git
synced 2026-01-25 15:46:12 +00:00
10 lines
217 B
Rust
10 lines
217 B
Rust
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"));
|
|
}
|