mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-26 13:19:58 +03:00
15 lines
281 B
Text
15 lines
281 B
Text
string f()
|
|
{
|
|
return duration.total!"seconds".to!string;
|
|
}
|
|
|
|
string g()
|
|
{
|
|
return duration.total!"seconds"().to!string;
|
|
}
|
|
|
|
string h()
|
|
{
|
|
return duration.total!"seconds"().to!string.to!string.to!string.to!string.to!string.to!string
|
|
.to!string.to!string.to!string;
|
|
}
|