Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    END { print "1st END\n" }
    END { print "2nd END\n" }
    END { print "\n" }
    
  2. or download this
    # begin output - this line not really printed by code above
    1st BEGIN
    ...
    2nd END
    1st END
    # end output - this line not really printed by code above