This one is funny: If you want convenient syntax for array-slices in 0.4, you can define
Base.call(A::Array,i...)=slice(A,i...)
Then you can use the good old Matlab-like
x=rand(10,10)
x(:,2)
will return a view. (Not that I think you should do this...)
Fabian
