http://qs321.pair.com?node_id=286988


in reply to 'Using' modules

If you use require or use (the latter is usually preferred) then said warning shouldn't occur. Perl keeps track of which modules it has already compiled, and won't recompile a module unless you know which strings to pull. That is, as long as you use require or use. Note that the manual page about do also recommends the use of require or use.

Abigail