comparison tests/mini/phobos/strings2.d @ 501:ba7f06832d1c

missed one phobos test
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 12 Aug 2008 00:56:09 +0200
parents tests/mini/strings2.d@1bb99290e03a
children
comparison
equal deleted inserted replaced
500:fc098100ecc7 501:ba7f06832d1c
1 module strings2;
2
3 import std.string;
4 import std.stdio;
5
6 void main()
7 {
8 int i = 32;
9 auto str = format(i);
10 writefln(str);
11
12 long l = 123123;
13 str = format(l);
14 writefln(str);
15 }