pipe-op 0.0.1

The elixir pipe operator as a macro in Rust
Documentation
1
2
3
4
5
6
#[allow(dead_code)]

/// add is a helper function which adds two numbers
fn add(a: usize, b: usize) -> usize {
    a + b
}