mirror of
https://github.com/clap-rs/clap
synced 2025-01-09 03:08:45 +00:00
10 lines
216 B
Rust
10 lines
216 B
Rust
|
use clap::{app_from_crate, arg};
|
||
|
|
||
|
fn main() {
|
||
|
let matches = app_from_crate!()
|
||
|
.arg(arg!(-n --name <NAME>).required(false))
|
||
|
.get_matches();
|
||
|
|
||
|
println!("name: {:?}", matches.value_of("name"));
|
||
|
}
|