rs-args 0.3.1

A simple command line argument parser for Rust
Documentation
1
2
3
4
5
6
fn main() {
    let args = rs_args::parse_arguments();
    for arg in args {
        println!("{:?}", arg);
    }
}