julia icon indicating copy to clipboard operation
julia copied to clipboard

`@world` showing for functions

Open nsajko opened this issue 4 months ago • 1 comments

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)

nsajko avatar Jun 08 '25 08:06 nsajko