unison/unison-src/transcripts/fix3171.output.md
Greg Pfeil 0031542faf
Add a space before code block info strings
This is for consistency with the `cmark` style. Now the blocks we still
pretty-print ourselves will match the bulk of them that `cmark`
produces.
2024-07-10 13:56:07 -06:00

36 lines
723 B
Markdown

Tests an case where decompiling could cause function arguments to occur in the
opposite order for partially applied functions.
``` unison
f : Nat -> Nat -> Nat -> () -> Nat
f x y z _ = x + y * z
> f 1 2
> f 1 2 3
```
``` 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`:
f : Nat -> Nat -> Nat -> 'Nat
Now evaluating any watch expressions (lines starting with
`>`)... Ctrl+C cancels.
4 | > f 1 2
z _ -> 1 Nat.+ 2 Nat.* z
5 | > f 1 2 3
_ -> 1 Nat.+ 2 Nat.* 3
```