Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Rust

Idiom #232 Read a command line boolean flag

Print "verbose is true" if the flag -v was passed to the program command line, "verbose is false" otherwise.

use clap::{Arg, App};
let matches = App::new("My Program")
                .arg(Arg::with_name("verbose")
                    .short("v")
                    .takes_value(false))
                .get_matches();
                   
if matches.is_present("verbose") {
    println!("verbose is true")
} else {
    println!("verbose is false")
}
print("verbose is ${args.contains("-v")}");

New implementation...
< >
programming-idioms.org