mirror of
https://github.com/clap-rs/clap
synced 2024-12-15 07:12:32 +00:00
14 lines
334 B
Rust
14 lines
334 B
Rust
use clap::{arg, command};
|
|
|
|
fn main() {
|
|
let matches = command!() // requires `cargo` feature
|
|
.arg(arg!([NAME]).default_value("alice"))
|
|
.get_matches();
|
|
|
|
println!(
|
|
"name: {:?}",
|
|
matches
|
|
.get_one::<String>("NAME")
|
|
.expect("default ensures there is always a value")
|
|
);
|
|
}
|