in reply to Where and when you should place 'use module;'?

Look into require - it is similar to use but happens at run time rather than compile time. It only loads the modules if the subroutine it occurs in is run. You may need to import the module in addition to requiring it.
  • Comment on Re: Where and when you should place 'use module;'?