guix/tests/lang/eval-okay-good-value.nix

8 lines
90 B
Nix
Raw Normal View History

2006-07-24 15:50:29 +00:00
let {
f = {x, y : ["baz" "bar" "bat"]}: x + y;
body = f {x = "foo"; y = "bar";};
}