1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-29 10:31:15 +02:00
nix/tests/lang/eval-okay-good-value.nix
2006-07-24 15:50:29 +00:00

7 lines
90 B
Nix

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