view test/foreach3.d @ 115:5ba6d286c941 trunk

[svn r119] Added the monitor data field that comes after the vtable pointer to all classes. Represented as a void* initialized to zero.
author lindquist
date Sun, 25 Nov 2007 03:58:55 +0100
parents 4648206ca213
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");
}