Jeff 'Japhy' Pinyan wrote:
>
> When you say
>
>   use Module qw( args go here );
>
> this is translated into
>
>   BEGIN {
>     require Module;
>     Module->import(qw( args go here ));
>   }

That's an interesting point Jeff. You're right that it's

 Module->import()

instead of

 Module::import()

as 'import' will be inherited in the (common) case that
Module ISA Exporter.

Rob





-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to