nix-gh/tests/lang/eval-okay-good-value.nix
2006-07-24 15:50:29 +00:00

8 lines
90 B
Nix

let {
f = {x, y : ["baz" "bar" "bat"]}: x + y;
body = f {x = "foo"; y = "bar";};
}