view test/foreach3.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 foreach3;

void main()
{
    static str = ['h','e','l','l','o'];
    foreach(i,v; str) {
        printf("%c",v);
    }
    printf("\n");

    foreach(i,v; str) {
        v++;
    }

    foreach(i,v; str) {
        printf("%c",v);
    }
    printf("\n");
}