Test for partially applied builtins

This commit is contained in:
Dan Doel 2024-04-16 15:23:21 -04:00
parent 383a6695d7
commit da74c38f0e
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,10 @@
```ucm:hide
.> builtins.merge
```
Just a simple test case to see whether partially applied
builtins decompile properly.
```unison
> (+) 2
```

View File

@ -0,0 +1,23 @@
Just a simple test case to see whether partially applied
builtins decompile properly.
```unison
> (+) 2
```
```ucm
Loading changes detected in scratch.u.
scratch.u changed.
Now evaluating any watch expressions (lines starting with
`>`)... Ctrl+C cancels.
1 | > (+) 2
(Nat.+) 2
```