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