Help for this page

Select Code to Download


  1. or download this
    Can't locate object method "_any_method_I_call" via package
    
  2. or download this
    My::Module
    My::Module::Foo
    My::Module::Bar
    My::Module::Baz
    
  3. 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 );
    
  4. 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 )] );
    
  5. or download this
    My::Module::Foo::this_method($self,@args);
    
  6. or download this
    - use Exporter;
    + use Exporter qw( import );