mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 23:02:31 +00:00
15 lines
237 B
Rust
15 lines
237 B
Rust
|
use clap::Parser;
|
||
|
|
||
|
#[derive(Parser)]
|
||
|
#[clap(author, version, about)]
|
||
|
struct Cli {
|
||
|
#[clap(default_value_t = String::from("alice"))]
|
||
|
name: String,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let cli = Cli::parse();
|
||
|
|
||
|
println!("name: {:?}", cli.name);
|
||
|
}
|