Hello, following code:

import std.algorithm : joiner;
string joined = joiner(["hello", "world"], " ");

Results in:

Error: cannot implicitly convert expression (joiner(...)) of type Result to string

Any idea how to make this work ?

Reply via email to