in reply to Re: "use" vs "require"
in thread "use" vs "require"

I find that fully qualified calls to imported subs makes it easier to decipher the code at some later date. Otherwise the reader has to look up the sub in their head, or perldoc, when it could be right there where they need it most.

Replies are listed 'Best First'.
Re^3: "use" vs "require"
by ikegami (Patriarch) on Aug 07, 2006 at 20:22 UTC

    An alternative is to explicitely state all the imported functions in the use statement. For example, instead of saying

    use Module;
    use
    use Module qw( func1 func2 );