- or download this
Can't locate object method "_any_method_I_call" via package
- or download this
My::Module
My::Module::Foo
My::Module::Bar
My::Module::Baz
- or download this
package My::Module;
use warnings;
...
use My::Module::Foo qw( :all );
use My::Module::Bar qw( :all );
use My::Module::Baz qw( :all );
- or download this
package My::Module::Foo;
...
use Exporter;
our @EXPORT = qw( this_method that_method );
our %EXPORT_TAGS = ( all => [qw( this_method that_method )] );
- or download this
My::Module::Foo::this_method($self,@args);
- or download this
- use Exporter;
+ use Exporter qw( import );