How long do we have the value printer already? It's time to stop concatenating strings like it's 2005 Change-Id: I3f5074de2439a1ad78af94de877bb141bc9f1d82
19 lines
352 B
Nix
19 lines
352 B
Nix
let
|
|
|
|
f = args@{x, y, z}: x + args.y + z;
|
|
|
|
g = {x, y, z}@args: f args;
|
|
|
|
h = {x ? "d", y ? x, z ? args.x}@args: x + y + z;
|
|
|
|
j = {x, y, z, ...}: x + y + z;
|
|
|
|
in
|
|
[
|
|
(f {x = "a"; y = "b"; z = "c";})
|
|
(g {x = "x"; y = "y"; z = "z";})
|
|
(h {x = "D";})
|
|
(h {x = "D"; y = "E"; z = "F";})
|
|
(j {x = "i"; y = "j"; z = "k"; bla = "bla"; foo = "bar";})
|
|
]
|