Hello, Consider the following code which is in the file Foo.jl
module Foo
function bar(x, y)
x + y
end
end
reload("Foo")
Then, at the REPL:
julia> include("Foo.jl")
Julia does not return. Can someone help me understand what is happening
here? Is the module being infinitely reloaded?
Thank you
