Help for this page

Select Code to Download


  1. or download this
    package A;
    
    ...
    print "executing A\n";
    
    1;
    
  2. or download this
    package Z;
    
    ...
    print "executing Z\n";
    
    1;
    
  3. or download this
    use strict;
    use warnings;
    ...
    use Z;
    
    print "executing script.pl\n";
    
  4. or download this
    compiling script.pl
    compiling A
    ...
    compiling Z
    executing Z
    executing script.pl