Help for this page

Select Code to Download


  1. or download this
    # test.pl
    use warnings;
    use strict;
    ...
    funcA();
    funcB();
    funcC();
    
  2. or download this
    # Include.pm
    
    use myA;
    ...
    use myC;
    
    1;
    
  3. or download this
    package myA;
    
    use base 'Exporter';
    ...
    }
    
    1;
    
  4. or download this
    package myB;
    
    use base 'Exporter';
    ...
    }
    
    1;
    
  5. or download this
    package myC;
    
    use base 'Exporter';
    ...
    }
    
    1;
    
  6. or download this
    funcA at myA.pm line 7.
    funcB at myB.pm line 7.
    funcC at myC.pm line 7.