mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-06 19:06:02 +03:00
8 lines
117 B
D
8 lines
117 B
D
module tangotests.stdout2;
|
|
|
|
import tango.io.Stdout;
|
|
|
|
void main()
|
|
{
|
|
Stdout.formatln("{} {} {}", "a", "b", 1.0);
|
|
}
|