Skip to content

Commit 73f815b

Browse files
add transcript
1 parent 4d21526 commit 73f815b

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
``` ucm
2+
scratch/main> builtins.mergeio lib.builtin
3+
4+
Done.
5+
```
6+
7+
``` unison :error
8+
type Foo = Bar Nat
9+
10+
foo : Foo -> Nat
11+
foo x =
12+
(Barr n) = x
13+
n
14+
```
15+
16+
``` ucm :added-by-ucm
17+
Loading changes detected in scratch.u.
18+
19+
20+
21+
22+
I couldn't resolve any of these symbols:
23+
24+
5 | (Barr n) = x
25+
26+
27+
Symbol Suggestions
28+
29+
Barr No matches
30+
```
31+
32+
``` unison :error
33+
type Foo = Bar Nat
34+
35+
foo : Foo -> Nat
36+
foo x =
37+
b@(Barr n) = x
38+
n
39+
```
40+
41+
``` ucm :added-by-ucm
42+
Loading changes detected in scratch.u.
43+
44+
45+
46+
47+
I couldn't resolve any of these symbols:
48+
49+
5 | b@(Barr n) = x
50+
51+
52+
Symbol Suggestions
53+
54+
Barr No matches
55+
```

0 commit comments

Comments
 (0)