clap/examples/tutorial_builder/03_03_positional.rs
2022-02-15 08:54:59 -06:00

7 lines
158 B
Rust

use clap::{arg, command};
fn main() {
let matches = command!().arg(arg!([NAME])).get_matches();
println!("NAME: {:?}", matches.value_of("NAME"));
}