Re: BEGIN, preloading and restarting

2003-11-11 Thread Perrin Harkins
On Mon, 2003-11-10 at 22:07, Anatoly Vorobey wrote: > In fact, some of the stuff I'm > preloading aren't .pm modules, they're .pl libraries I want to > "require" rather than "use". Be careful with the .pl libs. If they export functions (i.e. do not have their own package namepsace), the function

BEGIN, preloading and restarting

2003-11-10 Thread Anatoly Vorobey
Hello, I've two quick and perhaps silly questions. I'm preloading a whole lot of modules in my startup script. In fact, some of the stuff I'm preloading aren't .pm modules, they're .pl libraries I want to "require" rather than "use". Do I have to wrap the require statements inside a BEGIN {} blo