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