Julia 1.2, Atom 1.40.1, latest versions of Atom.jl and Juno.jl, macOS.
At a fresh Juno Julia REPL:
julia> d = Dict(1 => "a", 3 => "b", 0 => "c")
Dict{Int64,String} with 3 entries:
0 => "c"
3 => "b"
1 => "a"
julia> sort(d)
OrderedCollections.OrderedDict{Int64,String} with 3 entries:
0 => "c"
1 => "a"
3 => "b"
Who said to import OrderedCollections
???
Terminal REPL, same version of everything:
julia> d = Dict(1 => "a", 3 => "b", 0 => "c")
Dict{Int64,String} with 3 entries:
0 => "c"
3 => "b"
1 => "a"
julia> sort(d)
ERROR: MethodError: no method matching sort(::Dict{Int64,String})
We were able to reproduce this on Linux and Windows, so it appears like a Juno side effect. How do we make the Juno REPL behave like the terminal REPL?