raskell 0.1.1

Haskell-style functional programming for Rust
Documentation
1
2
3
4
5
6
7
8
use raskell::hdo;

fn main() {
    let _ = hdo! {
        x <- Some(10);
        let y = x * 2;
    };
}