unison/unison-src/transcripts/cycle-update-3.md
2024-06-25 11:11:07 -07:00

336 B

Update a member of a cycle with a type-changing update, thus severing the cycle.

scratch/main> builtins.merge
ping : 'Nat
ping _ = !pong + 1

pong : 'Nat
pong _ = !ping + 2
scratch/main> add
ping : Nat
ping = 3
scratch/main> update.old
scratch/main> view ping pong