in reply to Exporter Verbose

What is in packe's @EXPORT list?

Another thing to consider is that the BEGIN block must appear chronologically in the file before your use packe; command.


Dave

Replies are listed 'Best First'.
Re^2: Exporter Verbose
by unclesmiff (Initiate) on Feb 23, 2006 at 09:54 UTC
    this is the package packe;

    package packe; use Exporter; our @ISA = qw(Exporter); our @EXPORT = qw($camel %wolf ram); # exported by default sub ram { print "ram\n"; } $camel = "camel"; %wolf = ( 'wolf' , 2 ); 1;