argv 0.1.13

Command line arguments by reference: `Iterator<Item = &'static OsStr>`
Documentation
1
2
3
4
5
fn main() {
    for arg in argv::iter() {
        println!("{}", arg.to_string_lossy());
    }
}