forked from lix-project/lix
8 lines
78 B
Nix
8 lines
78 B
Nix
|
let {
|
||
|
|
||
|
f = {x ? y, y ? x}: x + y;
|
||
|
|
||
|
body = f {x = "c";} + f {y = "d";};
|
||
|
|
||
|
}
|