mirror of
https://github.com/clap-rs/clap
synced 2024-11-15 00:57:15 +00:00
befee6667b
This creates distinct tutorial examples from complex feature examples (more how-tos). Both sets are getting builder / derive versions (at least the critical ones).
14 lines
216 B
Rust
14 lines
216 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser)]
|
|
#[clap(author, version, about)]
|
|
struct Cli {
|
|
#[clap(short, long)]
|
|
verbose: bool,
|
|
}
|
|
|
|
fn main() {
|
|
let cli = Cli::parse();
|
|
|
|
println!("verbose: {:?}", cli.verbose);
|
|
}
|