Files
ldc/test/strings2.d
Tomas Lindquist Olsen 935dfae9c8 [svn r124] Fixed another D vararg + return in ptr bug.
Fixed some nested function calls failed to resolve the context ptr.
2007-11-26 07:26:21 +01:00

16 lines
195 B
D

module strings2;
import std.string;
import std.stdio;
void main()
{
int i = 32;
auto str = format(i);
writefln(str);
long l = 123123;
str = format(l);
writefln(str);
}