unison/unison-src/transcripts/cycle-update-1.output.md

78 lines
1.2 KiB
Markdown
Raw Normal View History

Update a member of a cycle, but retain the cycle.
``` unison
ping : 'Nat
ping _ = !pong + 1
pong : 'Nat
pong _ = !ping + 2
```
``` 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`:
ping : 'Nat
pong : 'Nat
```
``` ucm
scratch/main> add
⍟ I've added these definitions:
ping : 'Nat
pong : 'Nat
```
``` unison
ping : 'Nat
ping _ = !pong + 3
```
``` 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:
ping : 'Nat
```
``` ucm
scratch/main> update
2023-11-14 06:36:03 +03:00
Okay, I'm searching the branch for code that needs to be
updated...
That's done. Now I'm making sure everything typechecks...
Everything typechecks, so I'm saving the results...
2023-11-08 19:54:50 +03:00
Done.
scratch/main> view ping pong
ping : 'Nat
ping _ =
use Nat +
pong() + 3
pong : 'Nat
pong _ =
use Nat +
ping() + 2
```