Recommended: Autoreload.jl.
To do it manually, use "import <package>" and scope your function calls,
x = MyPackage.myfunction(y)
But Autoreload is quite a lot more sophisticated.
--Tim
On Wednesday, January 29, 2014 01:47:47 PM Robert DJ wrote:
> I am starting to work on a package, but I've run into a very mundane
> problem: I can't figure out how to reload functions after editing.
>
> The first time I load the package with
> using <package>
> I discover a bug, fix it and run
> reload("<package>")
> But I still get the same error.
>
> If I exit Julia, start it again and load the package the error is (of
> course) gone.
>
> What am I missing?
>
> Thanks,
>
> Robert