How to declare a string array for the purpose of concatenation

Adding to this, join lets you specify a delimiter:

julia> join(("a","b","c"), "; ")
"a; b; c" 
1 Like