I\'m confused about the different types of arrays of arrays. Consider these two examples
a = Array{Float64}[] push!(a,[1, 2]) push!(a,[3, 4]) push!(a,[1 2; 3 4])