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

75 lines
1.0 KiB
Markdown

```ucm
scratch/main> builtins.merge
Done.
```
```unison
foo : Nat
foo = 5
bar : Nat
bar = 5
```
```ucm
Loading changes detected in scratch.u.
I found and typechecked these definitions in scratch.u. If you
do an `add` or `update`, here's how your codebase would
change:
⍟ These new definitions are ok to `add`:
bar : Nat
foo : Nat
```
```ucm
scratch/main> add
⍟ I've added these definitions:
bar : Nat
foo : Nat
```
```unison
foo : Nat
foo = 6
```
```ucm
Loading changes detected in scratch.u.
I found and typechecked these definitions in scratch.u. If you
do an `add` or `update`, here's how your codebase would
change:
⍟ These names already exist. You can `update` them to your
new definition:
foo : Nat
(The old definition is also named bar.)
```
```ucm
scratch/main> update
Okay, I'm searching the branch for code that needs to be
updated...
Done.
scratch/main> view foo bar
bar : Nat
bar = 5
foo : Nat
foo = 6
```