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