cfad47cfa3/t3compiler/tads3/test/data/nested-anon.t
| 4b825dc642cb6eb9a060e54bf8d69288fbee4904 | cfad47cfa334b206c65f22086bcc5d63e6f70944 | ||
|---|---|---|---|
1 | #include <tads.h> | ||
2 | |||
3 | main(args) | ||
4 | { | ||
5 | local v = new Vector(10); | ||
6 | |||
7 | for (local i = 1 ; i <= 10 ; ++i) | ||
8 | v.append({x: {: x } }(i)); | ||
9 | |||
10 | for (local i = 1 ; i <= 10 ; ++i) | ||
11 | "(v[<<i>>])() = <<(v[i])()>>\n"; | ||
12 | } |
Download diff