mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
21 lines
459 B
Rust
21 lines
459 B
Rust
|
use clap::{AppSettings, Parser};
|
||
|
|
||
|
#[derive(Parser)]
|
||
|
#[clap(author, version, about)]
|
||
|
#[clap(global_setting(AppSettings::AllArgsOverrideSelf))]
|
||
|
#[clap(global_setting(AppSettings::DeriveDisplayOrder))]
|
||
|
#[clap(global_setting(AppSettings::AllowNegativeNumbers))]
|
||
|
struct Cli {
|
||
|
#[clap(long)]
|
||
|
two: String,
|
||
|
#[clap(long)]
|
||
|
one: String,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let cli = Cli::parse();
|
||
|
|
||
|
println!("two: {:?}", cli.two);
|
||
|
println!("one: {:?}", cli.one);
|
||
|
}
|