Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
** Breaking changes; simply pattern ``` match(option).with{ Some: () => 1, None: () => 1, } ``` is no longer valid, use ``` match(option).with{ Some_value: () => 1, None: () => 1, } ``` instead
- Loading branch information