in reply to Reading and capturing the import list
package Some::Module; my @urls; sub new { my $class = shift; my @urls = @_ if @_; bless {}, $class; } ##### main file : use Some::Module; $s = Some::Module->new("http://www.perlmonks.org");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Reading and capturing the import list
by chromatic (Archbishop) on Jul 03, 2003 at 17:28 UTC |