mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-15 12:23:13 +01:00
14 lines
201 B
D
14 lines
201 B
D
module tangotests.vararg1;
|
|
|
|
import tango.stdc.stdio;
|
|
|
|
void func(int[] arr...)
|
|
{
|
|
printf("1,2,4,5,6 == %d,%d,%d,%d,%d\n", arr[0],arr[1],arr[2],arr[3],arr[4]);
|
|
}
|
|
|
|
void main()
|
|
{
|
|
func(1,2,4,5,6);
|
|
}
|