view test/unrolled.d @ 60:66a6841bbe43 trunk

[svn r64] ...
author lindquist
date Thu, 25 Oct 2007 09:16:05 +0200
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);
}