fncli 0.1.0

An attribute macro to simplify writing simple command line applications.
Documentation

fncli

An attribute macro to simplify writing simple command line applications.

#[fncli::cli]
fn main(a: i32, b: i32) {
    println!("{}", a + b);
}
$ cargo run 1 2
3