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