in reply to Re: Re: Load all modules in directory
in thread Load all modules in directory

Don't do that. String eval is inefficient. You get the same results with eval { require $modname; $modname->import(); };
  • Comment on Re: Re: Re: Load all modules in directory