raskell 0.1.1

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

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

        guard x > 5

        pure x
    };
}