1fn 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                .action(clap::ArgAction::SetTrue)
12                .long_help("more log"),
13        );
14    cmd.get_matches();
15}
16