ref: b65a821ba2d8c753e974b02e541229dfd6754a6a
dir: /test/strjoin.myr/
use std const main = { const strings = [ "x", "y", "z", "w" ] std.put("%s\n", std.strcat("foo;", "bar")) std.put("%s\n", std.strjoin(strings[:], "")) std.put("%s\n", std.strjoin(strings[:], ":")) }