Closed
Description
There seems to be some weirdness with printing arrays of floats:
julia> 1:10
1:10
julia> z = sin(1:10)
10-element Float64 Array:
#undef
#undef
#undef
#undef
#undef
#undef
#undef
#undef
#undef
#undef
julia> z[1]
0.8414709848078965
julia> z[1:2]
2-element Float64 Array:
#undef
#undef
This is on OSX 10.8, although I wonder if that can possibly have anything to do with it. :P