-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
Description
julia> f(x) = print("hello")
f (generic function with 1 method)
julia> m = @which f(2)
f(x) in Main at REPL[3]:1
julia> CodeTracking.definition(String, m)
("f(x) = print(\"hello\")", 1)
julia> f(x) = print("world")
f (generic function with 1 method)
julia> m = @which f(2)
f(x) in Main at REPL[6]:1
julia> CodeTracking.definition(String, m)
("f(x) = print(\"hello\")", 1)
julia> f(2)
world
Metadata
Metadata
Assignees
Labels
No labels