fncli 0.1.0

An attribute macro to simplify writing simple command line applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# `fncli`

An attribute macro to simplify writing simple command line applications.

```rust
#[fncli::cli]
fn main(a: i32, b: i32) {
    println!("{}", a + b);
}
```

```bash
$ cargo run 1 2
3
```