clap/examples/tutorial_builder/03_05_default_values.rs

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")
);
}