In article <[EMAIL PROTECTED]>,
 [EMAIL PROTECTED] (Jeff 'Japhy' Pinyan) writes:
>On Oct 26, email/phone: [EMAIL PROTECTED] said:
>
>>package Electric;
>>require 5.005;
>>require Exporter;
>>@Electric::ISA=qw(Exporter);
>>@Electric::EXPORT_OK=qw(testvolts testamps testohms);
>
>You don't need to qualify these variables with package names.

You do if you've got a use strict higher up.  I know the posting didn't
have that, but it's a good idea nonetheless.  Although I'd be more inclined
to say

        our @ISA = ...

which does let you leave the package off.

-- 
Peter Scott
http://www.perldebugged.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to