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