cfad47cfa3/t3compiler/tads3/test/data/nested-anon-2.t

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
#include <tads.h>
2
3
main(args)
4
{
5
    testObj.testMethod();
6
}
7
8
testObj: object
9
    testMethod()
10
    {
11
        local lst = [1, 2, 3, 4, 5];
12
        
13
        lst.forEach(new function(a)
14
        {
15
            "outer: a = <<a>>\n";
16
            lst.forEach(new function(b)
17
            {
18
                "inner: a = <<a>>, b = <<b>>\n";
19
                if (a != b && a < b)
20
                    lst -= b;
21
            });
22
        });
23
    }
24
;