ref: cd67e508b96cf787ad5a7910dfb717584f718102
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[:], ":"))
}