unison/unison-src/transcripts/fix2187.output.md

30 lines
500 B
Markdown
Raw Permalink Normal View History

``` unison
lexicalScopeEx: [Text]
2024-04-15 03:01:39 +03:00
lexicalScopeEx =
parent = "outer"
2024-04-15 03:01:39 +03:00
inner1 = let
child1 = "child1"
inner2 : [Text]
2024-04-15 03:01:39 +03:00
inner2 = let
child2 = "child2"
[parent, child1, child2]
inner2
inner1
```
``` ucm
Loading changes detected in scratch.u.
I found and typechecked these definitions in scratch.u. If you
do an `add` or `update`, here's how your codebase would
change:
⍟ These new definitions are ok to `add`:
lexicalScopeEx : [Text]
```