Great! I'm glad it works. :)

As Ivar said, you should keep in mind the difference between `require` and
`include`. Defaulting to using `include` inside module definitions should
avoid this kind of problem in the future.

On Mon, Sep 15, 2014 at 3:35 PM, Ivar Nesje <iva...@gmail.com> wrote:

> If dirlist.jl declares a module, you might have to use the full name
> `YourModule.dirlist`.  Another potential gotcha is that require() only will
> load the file once, and when you're inside a module definition you might
> want to include() the file so that it will be loaded multiple times in the
> same session, or define a package you can be `using` instead.
>



On Tue, Sep 16, 2014 at 8:50 AM, RecentConvert <giz...@gmail.com> wrote:

> include("O:\\Code\\Julia\\dirlist.jl") does ineed work
>
> dirlist.jl does not call or define any modules
>

Reply via email to