Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    do 'mysub.pm';
    
    # The rest of code
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    use mysub.pm;
    
    # The rest of code
    
  3. or download this
    
    sub mysub1{
    ...
    }
    
    # some more subroutines