clap/examples/tutorial_builder/03_01_flag_bool.rs
Ed Page befee6667b docs: Re-work examples
This creates distinct tutorial examples from complex feature examples
(more how-tos).  Both sets are getting builder / derive versions (at
least the critical ones).
2021-11-30 21:33:52 -06:00

7 lines
187 B
Rust

use clap::{app_from_crate, arg};
fn main() {
let matches = app_from_crate!().arg(arg!(-v - -verbose)).get_matches();
println!("verbose: {:?}", matches.is_present("verbose"));
}