raskell 0.1.1

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

fn main() {
    let _: Option<i32> = hdo! {
        x <- Some(10);

        x + 1
    };
}