unison/unison-src/transcripts/update-term-aliases-in-different-ways.md
2024-06-25 11:11:07 -07:00

234 B

scratch/main> builtins.merge
foo : Nat
foo = 5

bar : Nat
bar = 5
scratch/main> add
foo : Nat
foo = 6

bar : Nat
bar = 7
scratch/main> update
scratch/main> view foo bar