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