How long do we have the value printer already? It's time to stop concatenating strings like it's 2005 Change-Id: I3f5074de2439a1ad78af94de877bb141bc9f1d82
20 lines
160 B
Nix
20 lines
160 B
Nix
let
|
|
|
|
a = "xyzzy";
|
|
|
|
as = {
|
|
a = "foo";
|
|
b = "bar";
|
|
};
|
|
|
|
bs = {
|
|
a = "bar";
|
|
};
|
|
|
|
x = with as; [a b];
|
|
|
|
y = with as; with bs; [a b];
|
|
|
|
in
|
|
[x y]
|