in reply to Automated Slurp
For argument's sake,
{ no strict 'refs'; *main::slurp = \&Slurp::slurp; }
could also be written as an export:
use Exporter; our @ISA = qw( Exporter ); our @EXPORT = qw( slurp );
or better, an export on request:
use Exporter; our @ISA = qw( Exporter ); our @EXPORT_OK = qw( slurp );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Automated Slurp
by afoken (Chancellor) on Jan 03, 2010 at 09:10 UTC | |
|
Re^2: Automated Slurp
by urthwrm (Novice) on Jan 03, 2010 at 00:10 UTC | |
by BrowserUk (Patriarch) on Jan 03, 2010 at 00:31 UTC |