vekatze / neut

A functional programming language with static memory management
https://vekatze.github.io/neut/
MIT License
840 stars 11 forks source link

`catch x = e1 in e2` #188

Closed vekatze closed 4 months ago

vekatze commented 4 months ago
catch x = e1 in
e2

↓

match e1 {
| Right(v) =>
  Right(v)
| Left(x) =>
  e2
}