flix / programming-flix

A tutorial for programming in Flix
Apache License 2.0
6 stars 13 forks source link

Fix `let*` example on page `Tips & Tricks` #66

Closed ninaandrup closed 2 years ago

ninaandrup commented 2 years ago

The example with let* syntax is not working.

use Option.flatMap;
let* o1 = Some(21);
let* o2 = Some(42);
Some(x + y)