mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-04 01:03:36 +03:00
9 lines
163 B
Markdown
9 lines
163 B
Markdown
|
```ucm
|
||
|
scratch/main> alias.type ##Nat Nat
|
||
|
scratch/main> alias.term ##Nat.+ Nat.+
|
||
|
```
|
||
|
```unison
|
||
|
unique type A = A Nat
|
||
|
unique type B = B Nat Nat
|
||
|
```
|