fncli 0.3.4

An attribute macro to simplify writing simple command line applications.
Documentation
1
2
3
4
#[fncli::cli]
fn main(a: i32, b: i32) {
    println!("{}", a + b);
}