mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 06:42:33 +00:00
14 lines
237 B
Rust
14 lines
237 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser)]
|
|
#[command(author, version, about, long_about = None)]
|
|
struct Cli {
|
|
#[arg(short, long)]
|
|
verbose: bool,
|
|
}
|
|
|
|
fn main() {
|
|
let cli = Cli::parse();
|
|
|
|
println!("verbose: {:?}", cli.verbose);
|
|
}
|