This commit is contained in:
Eelco Dolstra 2010-03-23 14:51:32 +00:00
parent 3bfd3a4e95
commit 71be50cc25
2 changed files with 8 additions and 20 deletions

View file

@ -1,19 +1 @@
let { Str("xyzzybarxyzzybar",[])
a = "xyzzy";
as = {
a = "foo";
b = "bar";
};
bs = {
a = "bar";
};
x = with as; a + b;
y = with as; with bs; a + b;
body = x + y;
}

View file

@ -7,7 +7,13 @@ let {
b = "bar"; b = "bar";
}; };
bs = {
a = "bar";
};
x = with as; a + b; x = with as; a + b;
body = x; y = with as; with bs; a + b;
body = x + y;
} }