Hi, I started using Julia last week, so newbie. Here is the issue I'm having:
- I want to store a certain unknown number of elements like [1,2] ( type
Array{Int64,1} ).
- I first create an array to store them, using:
julia> c_zero = Array(Array{Int64,1},0)
- But then, when I try to append! a new element, I get an error:
julia> append!(c_zero,[1,2])
MethodError(convert,(Array{Int64,1},1))
Thanks for any help.
Frederico.
