cfad47cfa3/t3compiler/tads3/test/data/adv3_adesc_test.t

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
#include "adv3.h"
2
3
4
object template 'sDescStr';
5
6
Thing 'universal remote' articleIndef='a';
7
Thing 'yttrium block';
8
Thing 'yellow brick';
9
Thing 'bowling ball';
10
Thing 'orange ball';
11
Thing 'evergreen shrub';
12
Thing 'äxiom';
13
Thing 'average score';
14
Thing 'motorcar';
15
Thing 'car';
16
17
main(args)
18
{
19
    forEachInstance(Thing, { cur: "<<cur.aDesc>>\n" });
20
}
21