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