mirror of
https://github.com/NixOS/nix.git
synced 2024-11-23 07:12:27 +00:00
11 lines
101 B
Nix
11 lines
101 B
Nix
let {
|
|
|
|
x = "a";
|
|
y = "b";
|
|
|
|
f = {x ? y, y ? x}: x + y;
|
|
|
|
body = f {x = "c";} + f {y = "d";};
|
|
|
|
}
|