Reply - Raw
Replies:
julia> l = [1 2 3 4 5 6 7 8 9]
1x9 Array{Int32,2}:
 1  2  3  4  5  6  7  8  9

julia> l[2:3]
2-element Array{Int32,1}:
 2
 3