/
germanubis
/
clap
Обзор
Документация
Войти
/
germanubis
/
clap
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/tutorial_builder/02_apps.rs
19 строк
470 B
Ed Page
docs(tutorial): Don't cover 'author' as its not shown
17 янв 2024, 17:06
17 янв 2024, 17:06
64ae186
Код
Авторство
О чём код?
use clap::{arg, Command}; fn main() { let matches = Command::new("MyApp") .version("1.0") .about("Does awesome things") .arg(arg!(--two <VALUE>).required(true)) .arg(arg!(--one <VALUE>).required(true)) .get_matches(); println!( "two: {:?}", matches.get_one::<String>("two").expect("required") ); println!( "one: {:?}", matches.get_one::<String>("one").expect("required") ); }