view tangotests/vararg1.d @ 228:52d1e9d27dc6 trunk

[svn r244] added another asm test.
author lindquist
date Sat, 07 Jun 2008 19:20:15 +0200
parents 6476da35a0fe
children
line wrap: on
line source

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);
}