8 lines
87 B
Nix
8 lines
87 B
Nix
let
|
|
x = "a";
|
|
y = "b";
|
|
|
|
f = {x ? y, y ? x}: x + y;
|
|
in
|
|
f {x = "c";} + f {y = "d";}
|