Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    use strict;
    ...
    END {
        say "I'm in the END block";
    }
    
  2. or download this
    my ($fh, $filename) = tempfile($template, DIR => '.');
    unlink $filename;
    
  3. or download this
    #!/usr/bin/env perl
    use strict;
    ...
    }
    close $fh;
    say "End of prog";