Bruce Adams escribió:
>
> and type safe compared to:
>
> stdout.writefln("%s%s%i", foo,bar,2);
>
D has typesafe variadics, so you can just say:
dout.writefln("%s%s%s", foo,bar,2);
%s doesn't mean "pretend it's a string," but rather "write its string
representation."
--
Carlos Santander Bernal