Help for this page

Select Code to Download


  1. or download this
    package Foo::Bar;
    
    ...
    sub dosomething {
       blah blah blah
    }
    
  2. or download this
    package Foo::Bar::Blah;
    
    ...
    use Foo::Bar qw(doSomething);
    use vars qw( @ISA );
    @ISA = qw(Foo::Bar);
    
  3. or download this
    use strict;
    use Foo::Bar::Blah;
    
    Foo::Bar::Blah::doSomething('xyz');
    
  4. 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 ...
    
  5. or download this
    Foo::Bar::doSomething('xyz');