mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
16 lines
195 B
D
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);
|
|
}
|