correction-- element-wise multiplication of string vectors also works if the two are of equal length:
julia> ["a","b"] .* ["c","d"]
2-element Array{ASCIIString,1}:
"ac"
"bd"
correction-- element-wise multiplication of string vectors also works if the two are of equal length:
julia> ["a","b"] .* ["c","d"]
2-element Array{ASCIIString,1}:
"ac"
"bd"