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 );
In reply to Re: Automated Slurp
by ruzam
in thread Automated Slurp
by urthwrm
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |