On Fri, Oct 7, 2016 at 1:59 PM, Eduardo Lenz <eduardobarpl...@gmail.com> wrote: > Hi. > > What is exactly the point of a construction like > > " > julia> a = 33.33 > 33.33 > > julia> a[1] > 33.33 > " > be valid ? I think it should rise an error, but there is a > getindex(::Float64, ::Int64) defined in the core language (v0.5).
https://github.com/JuliaLang/julia/issues/7903 and if you make it iterable it should also be indexable. (or both should be gone at the same time if we agree on that) > > >