On Thursday, May 22, 2014 9:01:11 PM UTC+2, Bob Nnamtrop wrote:
>
> But julia often does show large screen dumps. Try:
>
> julia> h={1=>1}; for i=2:100000 h[i]=i end; h
>
>
Off-topic tip: this kind of thing should be better written like this:
julia> h=[i=>i for i = 1:100000]


Reply via email to