raskell 0.1.1

Haskell-style functional programming for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
error: an `hdo!` block must end with `pure expression` or a final expression without `;`
 --> tests/ui/fail/missing_pure.rs:4:13
  |
4 |       let _ = hdo! {
  |  _____________^
5 | |         x <- Some(10);
6 | |         let y = x * 2;
7 | |     };
  | |_____^
  |
  = note: this error originates in the macro `hdo` (in Nightly builds, run with -Z macro-backtrace for more info)