in reply to use vs require

Actually, use is slower than require, because use also involves calling the import method.

It's just that use happens earlier, so it only looks faster.

japhy -- Perl and Regex Hacker