Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    # try.pl
    ...
    END { print "END in try.pl\n"; }
    
    print "try.pl main code running\n";
    
  2. or download this
    #!/usr/bin/perl
    # OurCommon.pm
    ...
    print "OurCommon.pm non-sub code running\n";
    
    sub new { print "new in OurCommon\n" }