parse_argument 0.1.5

A simple way to deal with taking in commandline arguments
Documentation
1
2
3
4
5
6
7
8
9
//! The hash map function is very simple and easy to use. Simply call 
//! the function and .get() whatever you want. 

use parse_argument::args_to_hashmap;

fn main() {
    let map = args_to_hashmap();
    println!("{map:#?}");
}