Help for this page

Select Code to Download


  1. or download this
    package My::Class::Foo;
    use base 'My::Class';
    ...
    }
    
    1;
    
  2. or download this
    package My::Class;
    use base 'More::Generic';
    ...
    }
    
    1;
    
  3. or download this
    package More::Generic;
    use base qw( File::Spec );
    ...
    } 
    
    1;
    
  4. or download this
    =pod
    
    ...
    
    =cut
    
  5. or download this
    package DerivePod::Includes::base;
    use base qw( DerivePod::Plugin );
    ...
    |;
    
    }