view test/foreach1.d @ 50:6fcc08a4d406 trunk

[svn r54] Added support for nested delegates referencing parent's stack variables. Replaced tester.sh with a version written in D. A few bugfixes.
author lindquist
date Mon, 22 Oct 2007 15:40:56 +0200
parents bc641b23a714
children d9d5d59873d8
line wrap: on
line source

module foreach1;
import std.stdio;

void main()
{
    static arr = [1,2,3,4,5];

    writef("forward");
    foreach(v;arr) {
        writef(' ',v);
    }
    writef("\nreverse");
    foreach_reverse(v;arr) {
        writef(' ',v);
    }
    writef("\n");
}