in reply to Re: to much hybries
in thread to much hubris
Another usecase is to export subroutines.package A; import from 'HTML::TAGS::AsFunctions' => 'Div A Img';
And the third, it enables you to relay subroutines.package B; sub import{ export from _ => qw/foo bar/ }
package SubRelay; sub import{ export from FooModule => 'foo'; export from BarPackage => 'bar'; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: to much hybries
by ysth (Canon) on Feb 09, 2007 at 00:38 UTC | |
by pmSwim (Acolyte) on Feb 09, 2007 at 19:30 UTC |