view test/unrolled.d @ 152:e984333d6ac6 trunk

[svn r158] fixed bug with console integer output: buffer was too small
author ChristianK
date Mon, 24 Mar 2008 20:49:21 +0100
parents 37a4fdab33fc
children d9d5d59873d8
line wrap: on
line source

module unrolled;

void test(T...)(T t) {
    foreach (value; t) {
        printf("%d\n", value);
        if (value == 2)
            break;
    }
}

void main() {
    test(1,4,3);
}