Thank you for the up-to-date Windows version!
This is giving me the option the meet the new module system.
A minimal test is the file "mymod.jl":
> module Mymod
> export y
> x=11
> y=22
> end
In the REPL
> using Mymod
returns the error "in module path: Mymod not defined"
while the combination
> load("mymod.jl")
> using Mymod
works fine, typing y does automatically import y=22.
Is this the expected behaviour?
If yes, it seems a bit more typing than what I expected.
If I make further changes to the file "mymod.jl", say y=33,
and load("mymod.jl") (Warning: replacing module Mymod)
then whatever I do, I can not get y=33, the old binding remains.
Again, is this the expected behaviour?