Help for this page

Select Code to Download


  1. or download this
    Package Utils;
    @EXPORT = qw(sub1 sub2);
    ...
        Code for sub2 here
        return;
    }
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    BEGIN {push @INC, qq(/path/to/module/Utils);}
    use Utils;
    
  3. or download this
        &Utils::sub1();
        &Utils::sub2();