One can initialize a Julia array by hand, using the square-brackets syntax:
julia> x = [1, 2, 3]
3-element Array{Int64,1}:
1
2
3
The first line after the command shows the size of the array you created. It also shows the type of its elements and its dimensionality (int this case Int64 ...