A very simple command line argument parser.
Argin is a very simple library with only 5 functions but its still able to do all the expected argument parsing
./program [file] [-format (name)]
would look like this:
```rust
use argin::Argin;
let arg = Argin::new(); arg.addpositionalarg(); arg.add_value("-format"); let args = arg.parse();
let file = args.pos_arg.get(0).unwrap(); let format = arg.values.get("-format").unwrap(); ```
new:
pub fn new() -> Argin
addflag:
pub fn add_flag(&mut self, flag: &str)
addvalue:
pub fn add_value(&mut self, name: &str)
addpositionalarg:
pub fn add_positional_arg(&mut self)
parse:
pub fn parse(&self) -> Argin
Its common to forget .parse() at the end
Contributors names and contact info
Currently there is no license, this may change in the future