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