missed one phobos test

This commit is contained in:
Tomas Lindquist Olsen
2008-08-12 00:56:09 +02:00
parent bec4e850e4
commit 85a122a53f
+15
View File
@@ -0,0 +1,15 @@
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);
}