raskell 0.1.1

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

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

            x + 1
        })
        .await;
    };
}