-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behavior
Description
load will not load modified functions
if you load a file, modify a function in that file, it will not update the function even if you call load again.
The problem extends to any modification in the file. Once loaded once, it will not load any modifications.
example:
create file bob.j
in file:
function bob()
println("bob")
end
julia> load("bob.j")
julia>bob()
bob
julia>
go to file modify:
println("bob") ---> println("i'm superbob")
julia> load("bob.j")
julia>bob()
bob
julia>
Metadata
Metadata
Assignees
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behavior