mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
13 lines
217 B
Rust
13 lines
217 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser, Debug)]
|
|
#[clap(name = "basic")]
|
|
struct Opt {
|
|
#[clap(short, value_enum, default_value_t)]
|
|
opts: bool,
|
|
}
|
|
|
|
fn main() {
|
|
let opt = Opt::parse();
|
|
println!("{:?}", opt);
|
|
}
|