unison/unison-src/transcripts/update-term-with-alias.md
2024-06-25 11:11:07 -07:00

26 lines
215 B
Markdown

```ucm
scratch/main> builtins.merge
```
```unison
foo : Nat
foo = 5
bar : Nat
bar = 5
```
```ucm
scratch/main> add
```
```unison
foo : Nat
foo = 6
```
```ucm
scratch/main> update
scratch/main> view foo bar
```