Help for this page

Select Code to Download


  1. or download this
    for my $i (0 .. 5006) {
        ...
    }
    
  2. or download this
    #!/bin/perl
    use strict;
    ...
    open my $outFile, '>', $fName  or die "Can't create '$fName': $!\n";
    print $outFile $thing;
    close $outFile;