in reply to Re^3: Using a module more than once
in thread Using a module more than once
However, as I understand it, you can delay use calls if you are using SelfLoader and then execute the use call inside of a subroutine.
Example:use SelfLoader; sub __PACKAGE__::myfunc; 1; __DATA__ sub myfunc { use ThisOtherModule; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Using a module more than once
by bart (Canon) on Aug 02, 2005 at 17:11 UTC | |
by techra (Pilgrim) on Aug 02, 2005 at 17:27 UTC |