summaryrefslogtreecommitdiff
path: root/docs/type_system/enum.md
blob: 9e6be9b9707a5acbcc7119e100f1f1082c2c43a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Enum

---

Unique symbols associated with a type that can map to an underlying type

```text
Enum[.name; ...] // Resoves to Enum[Void; ...]

Enum[TYPE; .name; ...]

Enum[TYPE; .name : VALUE; ...]
```