unison/unison-src/transcripts/delete-silent.output.md

36 lines
417 B
Markdown
Raw Permalink Normal View History

``` ucm
scratch/main> delete foo
2022-12-07 22:46:32 +03:00
⚠️
The following names were not found in the codebase. Check your spelling.
foo
2022-12-07 22:46:32 +03:00
```
``` unison
2022-12-07 22:46:32 +03:00
foo = 1
structural type Foo = Foo ()
```
``` ucm
scratch/main> add
2022-12-07 22:46:32 +03:00
⍟ I've added these definitions:
structural type Foo
foo : ##Nat
scratch/main> delete foo
2022-12-07 22:46:32 +03:00
Done.
scratch/main> delete.type Foo
2022-12-07 22:46:32 +03:00
Done.
scratch/main> delete.term Foo.Foo
2022-12-07 22:46:32 +03:00
Done.
```