main()1 fn main() {
2     let cmd = clap::Command::new("stdio-fixture")
3         .version("1.0")
4         .long_version("1.0 - a2132c")
5         .arg_required_else_help(true)
6         .subcommand(clap::Command::new("more"))
7         .arg(
8             clap::Arg::new("verbose")
9                 .long("verbose")
10                 .help("log")
11                 .long_help("more log"),
12         );
13     cmd.get_matches();
14 }
15