view test/bug61.d @ 104:4d1e9eb001e0 trunk

[svn r108] Now basic suppport for complex types. =,+,-,*,/ are supported.
author lindquist
date Mon, 19 Nov 2007 02:58:58 +0100
parents 61615fa85940
children d9d5d59873d8
line wrap: on
line source

module bug61;

void main()
{
    int[3] a = [42,4,141414];
    printf("empty:\n");
    foreach(v; a[3..$]) {
        printf("int = %d\n", v);
    }
    printf("one element:\n");
    foreach(v; a[2..$]) {
        printf("int = %d\n", v);
    }
    printf("all elements:\n");
    foreach(v; a) {
        printf("int = %d\n", v);
    }
    printf("empty reversed:\n");
    foreach_reverse(v; a[3..$]) {
        printf("int = %d\n", v);
    }
    printf("all elements reversed:\n");
    foreach_reverse(v; a) {
        printf("int = %d\n", v);
    }
}