import std.array;
import std.stdio;

void main() {
        string[] strs = ["abc", "def"];
        writeln(strs.join(" "));      
}

Works fine?

Reply via email to