in reply to Re: Re: Re: Exporter usage?
in thread Exporter usage?
returnspackage Foo; use strict; require Exporter; use vars qw(@ISA @EXPORT @EXPORT_OK); @ISA = qw(Exporter); @EXPORT_OK = qw($CGI); @EXPORT = qw($CGI); use CGI; our $CGI = new CGI; die $CGI; # I tried the export stuff down here, too 1; ----- use Foo qw($CGI);
"$CGI" is not exported by the Foo module at..
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: Exporter usage?
by theorbtwo (Prior) on Sep 02, 2002 at 04:16 UTC | |
by Anonymous Monk on Sep 02, 2002 at 04:30 UTC |