Programming in D – Solutions

Standard Input and Output Streams

import std.stdio;

void main() {
    stdout.write(1, ",", 2);

    // To complete the line if needed:
    writeln();
}