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