clap/examples/tutorial_derive/02_crate.rs
Ed Page befee6667b docs: Re-work examples
This creates distinct tutorial examples from complex feature examples
(more how-tos).  Both sets are getting builder / derive versions (at
least the critical ones).
2021-11-30 21:33:52 -06:00

17 lines
270 B
Rust

use clap::Parser;
#[derive(Parser)]
#[clap(author, version, about)]
struct Cli {
#[clap(long)]
two: String,
#[clap(long)]
one: String,
}
fn main() {
let cli = Cli::parse();
println!("two: {:?}", cli.two);
println!("one: {:?}", cli.one);
}