mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-10 20:00:27 +03:00
253 B
253 B
.> builtins.merge
Tests an case where decompiling could cause function arguments to occur in the opposite order for partially applied functions.
f : Nat -> Nat -> Nat -> () -> Nat
f x y z _ = x + y * z
> f 1 2
> f 1 2 3