Help for this page

Select Code to Download


  1. or download this
    
    package YourModule;
    ...
    @EXPORT    = qw(get_id AnotherSub);
    @EXPORT_OK = qw(evenMoreSubs justOneMore);
    
  2. or download this
    use YourModule qw (:DEFAULT);
    use strict;
    
    my $id = get_id();