mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 13:52:34 +00:00
28 lines
502 B
Rust
28 lines
502 B
Rust
use clap::{Parser, ValueEnum};
|
|
|
|
#[derive(Parser)]
|
|
#[command(author, version, about, long_about = None)]
|
|
struct Cli {
|
|
/// What mode to run the program in
|
|
#[arg(value_enum)]
|
|
mode: Mode,
|
|
}
|
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, ValueEnum)]
|
|
enum Mode {
|
|
Fast,
|
|
Slow,
|
|
}
|
|
|
|
fn main() {
|
|
let cli = Cli::parse();
|
|
|
|
match cli.mode {
|
|
Mode::Fast => {
|
|
println!("Hare");
|
|
}
|
|
Mode::Slow => {
|
|
println!("Tortoise");
|
|
}
|
|
}
|
|
}
|