Based on #59, we have an opportunity to introduce anonymous tagged union.
This will be useful for defining one-off data type for function arguments and return types.
For example,
(url String).fetch
| cases
.Ok(String)
.Fail($.status(Int))
= undefined
Based on #59, we have an opportunity to introduce anonymous tagged union.
This will be useful for defining one-off data type for function arguments and return types.
For example,