argi 0.1.0-beta.5

Argument parsing for the future 🚀
Documentation
use argi::cli;

fn main() {
    cli!(
        help: "Demo command-line utility",
        run: (|_, _| println!("Hello, world!"))
    )
    .launch();
}