- or download this
package Foo::Bar;
...
sub dosomething {
blah blah blah
}
- or download this
package Foo::Bar::Blah;
...
use Foo::Bar qw(doSomething);
use vars qw( @ISA );
@ISA = qw(Foo::Bar);
- or download this
use strict;
use Foo::Bar::Blah;
Foo::Bar::Blah::doSomething('xyz');
- or download this
Use of inherited AUTOLOAD for non-method Foo::Bar::Blah::doSomething()
+ is deprecated at ./tests/testFooBarBlah.pl ...
Can't locate auto/Foo/Bar/Blah/doSomething.al in @INC ...
- or download this
Foo::Bar::doSomething('xyz');