mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-04 01:03:36 +03:00
23 lines
191 B
Markdown
23 lines
191 B
Markdown
|
```ucm:hide
|
||
|
.> builtins.merge
|
||
|
```
|
||
|
|
||
|
```unison
|
||
|
thing = 3
|
||
|
foo.hello = 5 + thing
|
||
|
bar.hello = 5 + thing
|
||
|
hey = foo.hello
|
||
|
```
|
||
|
|
||
|
```ucm
|
||
|
.> add
|
||
|
```
|
||
|
|
||
|
```unison
|
||
|
thing = 2
|
||
|
```
|
||
|
|
||
|
```ucm:error
|
||
|
.> update
|
||
|
```
|