xxxxxxxxxx
import std.stdio;
void print( Args... )( Args args )
{
static foreach( arg ; args )
writeln( arg );
}
void main()
{
print(1, "test", [1,2,3]);
/*internally expand to:
writeln(1);
writeln("test");
writeln([1,2,3]);
*/
}