view 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
line wrap: on
line source

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);
}