v0.2.1
Changelog
Many PRs have gone in, but if you're just tuning in for the major changes, here they are!
- Fix a bug related to importing trait implementations with a star import (#588)
- Match expressions and pattern matching on structs and tuples (#573)
- Tuple types (#399)
- Multi-item import statements (#584)
Note that let
pattern matching is not yet implemented, but is coming soon. So, the following statement does not work yet:
let (x, y) = (true, false);
This is coming soon!