Imagine I want to initialize an array of array. x = [[1,2],[3,4]] but this gets flattened into [1,2,3,4]
Is there an easy way of constructing a nested array? I'm currently having
to do
x = Array{Int64}[]
push!(x, [1,2])
push!(x, [3,4])
which doesn't seem very clean
