* only concatenates two Strings, here you have an Array of strings and a string. You could call join() on your array first or use push!(VA,"T") if you want to add an element to the VA array.
-Jacob On Jul 24, 2014 11:14 PM, "cnbiz850" <[email protected]> wrote: > julia> VA > 3-element Array{ASCIIString,1}: > "A" > "B" > "C" > > julia> VA * "T" > ERROR: `*` has no method matching *(::Array{ASCIIString,1}, ::ASCIIString) > >
