Help for this page

Select Code to Download


  1. or download this
    package Foo;
    
    use base qw( ExporterAttributes );
    ...
    
    use Foo qw( :GENERAL );
    utility($bar);
    
  2. or download this
    package Foo;
    
    use base qw( ExporterAttributes );
    ...
    sub another : Export_Ok(another) Export_Group(general) {...}
    
    1;