import std.array;
import std.stdio;
void main() {
string[] strs = ["abc", "def"];
writeln(strs.join(" "));
}Works fine?
import std.array;
import std.stdio;
void main() {
string[] strs = ["abc", "def"];
writeln(strs.join(" "));
}Works fine?