ref: dffeabb9ccfbe8dc25bebb78f7471578d6cac9c4 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[:])) }