I created a file called MyModule.jl with the following content module MyModule
export x, y
x() = "x"
y() = "y"
p() = "p"
end
from the REPL, i can do
using MyModule
x()
--> "x"
Now I would like to use the Autoreload package for easy hacking on my fancy
new module.
So in the REPL I do
using Autoreload
arequire("MyModule")
x()
--> ERROR: x not defined
What gives?
//A
