guix/tests/lang/eval-okay-with.nix

14 lines
105 B
Nix
Raw Normal View History

2005-11-04 14:50:33 +00:00
let {
a = "xyzzy";
as = {
a = "foo";
b = "bar";
};
x = with as; a + b;
body = x;
}