in reply to Re: Automatically load module on startup?
in thread Automatically load module on startup?

I haven't used AutoLoader in ages. How would you use it to load a module every time someone invokes perl?

Replies are listed 'Best First'.
Re^3: Automatically load module on startup?
by bms (Monk) on Mar 09, 2012 at 05:53 UTC

    AutoLoader doesn't load modules. If perl receives an undefined subroutine, it starts looking in the auto directory for it. If it finds the proper .al file, it uses it.

    Despite AutoLoader not loading full modules, it may be something that the OP may want to look at.