extern crate clap; use clap::{Arg, App, Subcommand}; fn main() { println!("Hello, world!"); App::new("myapp") .version("1.0") .author("vbatts") .about("farts") .get_matches(); }