unison/unison-src/transcripts/update-type-delete-constructor-with-dependent.md
2024-06-25 11:11:07 -07:00

290 B

scratch/main> builtins.merge lib.builtin
unique type Foo
  = Bar Nat
  | Baz Nat Nat

foo : Foo -> Nat
foo = cases
  Bar n -> n
  Baz n m -> n + m
scratch/main> add
unique type Foo
  = Bar Nat
scratch/main> update