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 _ = hdo!(async {
        x <- vec![1, 2, 3];

        pure x
    });
}