mirror of
https://github.com/clap-rs/clap
synced 2024-11-15 00:57:15 +00:00
4b51b8e253
`#[clap(about)]` only overrides `about`. If the doc comment also sets `long_about`, it won't be overridden. This change is to help raise visibility of reseting `long_about` in these cases.
24 lines
489 B
Rust
24 lines
489 B
Rust
// Note: this requires the `derive` feature
|
|
|
|
use clap::Parser;
|
|
|
|
/// Simple program to greet a person
|
|
#[derive(Parser, Debug)]
|
|
#[clap(author, version, about, long_about = None)]
|
|
struct Args {
|
|
/// Name of the person to greet
|
|
#[clap(short, long)]
|
|
name: String,
|
|
|
|
/// Number of times to greet
|
|
#[clap(short, long, default_value_t = 1)]
|
|
count: u8,
|
|
}
|
|
|
|
fn main() {
|
|
let args = Args::parse();
|
|
|
|
for _ in 0..args.count {
|
|
println!("Hello {}!", args.name)
|
|
}
|
|
}
|