mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 14:52:55 +00:00
11 lines
78 B
Nix
11 lines
78 B
Nix
let {
|
|
|
|
x = "a";
|
|
y = "b";
|
|
|
|
f = {x ? y, y ? x}: x + y;
|
|
|
|
body = f {};
|
|
|
|
}
|