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

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
#include "tads.h"
2
#include "t3.h"
3
4
enum orange, banana;
5
6
main()
7
{
8
    local lst = [apple, cherry, orange, plum, grape, pear, banana];
9
    local toklst = [tokWordDict, tokInvalid];
10
    local x;
11
12
    for (local i = 1, local cnt = lst.length() ; i <= cnt ; ++i)
13
        x = lst[i];
14
}
15