Help for this page

Select Code to Download


  1. or download this
    our @EXPORT_OK = qw(
        sub_one
    ...
     
    our %EXPORT_TAGS;
    $EXPORT_TAGS{all} = [@EXPORT_OK];
    
  2. or download this
    use My::Module qw(sub_one sub_three);
    
  3. or download this
    use My::Module qw(:all);