in reply to import duties

According to perlfunc, C<use> is exactly equivalent to

BEGIN { require Module; import Module LIST; }

so the my declaration is only in scope for the use statement.

Replies are listed 'Best First'.
Re: Re: import duties
by jimc (Sexton) on Dec 26, 2003 at 03:27 UTC
    Thanks for the (now obvious) explanation. shoulda slept on it.