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"

Reply via email to