Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
        push @thescore, $_};
        ...
    }
    
  2. or download this
    foreach (@thescore)
    {
       print "$_\n";
    }
    
  3. or download this
    foreach my $thescore(@thescore)
    {
       print "$thescore\n";
    }