lnls 0.1.0

A practice project that lists files of a given path
Documentation
1
2
3
4
5
6
7
8
9
10
use std::process;
use std::env;
fn main() {
    let config = lnls::Config::from(env::args());
    if let Err(error) = lnls::run(config) {
        println!("Programm exited with the following error:\n{}", error);
        process::exit(1);
    }
}