8 lines
144 B
Markdown
8 lines
144 B
Markdown
# Type Unions
|
|
|
|
TODO: Explore. What syntax is better? `|` seems better.
|
|
|
|
```
|
|
type Foo = String | Int32
|
|
type Bar = Boolean or String or Int32
|
|
```
|