An autocurrying macro for Rust.
This crate requires nightly:
```rust use masala::curry;
fn add(a: isize, b: isize) { a + b }
fn main() { println!("{}", add(33)(42)); } ```
[ ] - Allow for Generics [ ] - Allow for curry functions to be written similar to:
```rust
fn demo