forked from lix-project/lix
8 lines
92 B
Nix
8 lines
92 B
Nix
|
let {
|
||
|
|
||
|
f = {x, y : ["baz" "bar" z "bat"]}: x + y;
|
||
|
|
||
|
body = f {x = "foo"; y = "bar";};
|
||
|
|
||
|
}
|