Le vendredi 05 septembre 2014 à 22:16 -0700, Tatsuya Hirose a écrit : > Hi all, > > > I am a beginner for Julia. > I am using the version 0.3.0. > > > I have a question about tuple assignment. Following is an example: > > > julia> zzzz=(1, 2, 3, 4) > (1,2,0,0) > > > "3" and "4" is displayed "0", "0". But, in version 0.2.0 of Julia, > > > julia> z=(1, 2, 3, 4) > > (1,2,3,4) > > I guess, the output of version 0.2.0 is correct. > What happen in version 0.3.0?
It looks like you're hitting this bug: https://github.com/JuliaLang/julia/issues/7434 Apparently, this is only a display bug. Regards
