xxxxxxxxxx
import std.stdio;
auto foo(T = uint)(uint x)
{
return T.stringof;
}
auto foo(T = ulong)(ulong x)
void main()
writeln(foo(10L));