cok 0.1.13

A simple to use, efficient, Command Line Argument Parser
Documentation
1
2
3
4
5
6
7
8
9
10
#[allow(warnings)]
fn main() {
    use cok::Cli;
    let json = include_str!("../cli.json");
    let cli = Cli::new(json);
    let args = cli.args();
    if args.len() !=3{
        cli.print_help()
    }
}