docopticon 0.1.2

An argument-parser based on the obligatory help-text
Documentation
1
2
3
4
5
6
7
8
9
10
11
// use docopticon::Parser;
//
// const HELP: &'static str = r#"
// USAGE: docopticon
//
// "#;
//
fn main() {
    // let mut parser = Parser::new(HELP.as_bytes());
    // parser.parse_help();
}