What do you want to do? If you want to append to the array you should
use push!(VA,"T"), if you want to apply that to every element of the
array, I'd recommend [x*T for x in VA]. I guess it might be reasonable
to allow the multiplication, but maybe having to be explicit is an
advantage.

On Thu, Jul 24, 2014 at 11:14 PM, cnbiz850 <cnbiz...@gmail.com> wrote:
> julia> VA
> 3-element Array{ASCIIString,1}:
>  "A"
>  "B"
>  "C"
>
> julia> VA * "T"
> ERROR: `*` has no method matching *(::Array{ASCIIString,1}, ::ASCIIString)
>

Reply via email to