view test/foreach2.d @ 34:4648206ca213 trunk

[svn r38] * resizing dynamic arrays support * throw is replaced with assert(0) * catch is ignored * better foreach support * various bugfixes
author lindquist
date Tue, 09 Oct 2007 02:50:00 +0200
parents
children d9d5d59873d8
line wrap: on
line source

module foreach2;

void main()
{
    static arr = [1.0, 2.0, 4.0, 8.0, 16.0];
    foreach(i,v; arr)
    {
        printf("arr[%d] = %f\n", i, v);
    }
    printf("-------------------------------\n");
    foreach_reverse(i,v; arr)
    {
        printf("arr[%d] = %f\n", i, v);
    }
}