julia
julia copied to clipboard
`@world` showing for functions
julia> function f end
f (generic function with 0 methods)
julia> g = f
f (generic function with 0 methods)
julia> const f = 3
3
julia> g
(::var"#f") (generic function with 0 methods)
Seems like the last result should maybe be shown including @world? Like here:
julia> struct f end
julia> g = f
f
julia> const f = 3
3
julia> g
@world(f, 38786:38788)