Help for this page

Select Code to Download


  1. or download this
    use base 'Exporter';
    
    our @EXPORT = qw[
    ...
          $variableB
          %mutantX
    ];
    
  2. or download this
    package Foo;
    
    use Bar qw[ functionA ];
    
    functionA($something);