You can suppress output with a trailing ';' (similar to MATLAB or IPython)
julia> rand(10)
10-element Array{Float64,1}:
...julia> rand(10); julia> On Tue, Oct 28, 2014 at 4:08 PM, Frank Davidson <[email protected]> wrote: > Hi, > > Julia newbie here... How would I stop output of a command to the REPL > display? Can I redirect to /dev/null or something? I'm loading a very large > data set using DataFrames and it wants to output everything to the screen... > > Thanks for any help! > > Frank >
