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