Thanks for your reply. I'm not sure how it is possible. It is fresh install (from julia nightlies) after purging everything from my system, including packages and juliarc. Updating did not help.
In any case, it is not only array of integers but any array or collection. If I use print([1]);, @show [1]; it works, but @show [1] will show the array and show an error message. I could not reproduce the error in my other computers. thanks again D. On Thursday, December 19, 2013 11:56:34 PM UTC+11, Stefan Karpinski wrote: > > It looks like you have you've messed around with base Julia. This means > you broke something that's necessary for printing an array of integers but > not for constructing one. > > > On Thu, Dec 19, 2013 at 1:58 AM, Eduardo Mendes > <[email protected]<javascript:> > > wrote: > >> Hi, >> >> I'm having some problem with the interpreter. I tried a clean install and >> did not fix it. >> >> Essentially if I omit the semicolon of an array expression I get >> BoundsError(). I am not sure whether anyone is having similar problem or is >> something particular to my computer. >> >> Any ideas on how can I fix it? >> >> Thanks >> D. >> >> $ julia >> _ >> _ _ _(_)_ | A fresh approach to technical computing >> (_) | (_) (_) | Documentation: http://docs.julialang.org >> _ _ _| |_ __ _ | Type "help()" to list help topics >> | | | | | | |/ _` | | >> | | |_| | | | (_| | | Version 0.3.0-prerelease+490 (2013-12-15 07:16 >> UTC) >> _/ |\__'_|_|_|\__'_| | Commit f8f3190* (0 days old master) >> |__/ | x86_64-linux-gnu >> >> julia> [1] >> 1-element Array{Int64,1}: >> Evaluation succeeded, but an error occurred while showing value of type >> Array{Int64,1}: >> ERROR: BoundsError() >> in parseint_nocheck at string.jl:1472 >> in parseint_nocheck at string.jl:1508 >> in parseint at string.jl:1511 >> in writemime at repl.jl:21 >> in display at multimedia.jl:117 >> in display at multimedia.jl:119 >> in display at multimedia.jl:151 >> >> >> >> >
