mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-14 11:53:13 +01:00
16 lines
217 B
D
16 lines
217 B
D
module unrolled;
|
|
|
|
extern(C) int printf(char*, ...);
|
|
|
|
void test(T...)(T t) {
|
|
foreach (value; t) {
|
|
printf("%d\n", value);
|
|
if (value == 2)
|
|
break;
|
|
}
|
|
}
|
|
|
|
void main() {
|
|
test(1,4,3);
|
|
}
|