Help for this page

Select Code to Download


  1. or download this
    foreach (@words)
    {
        print $fh "$_\n";
        chomp;
    }
    
  2. or download this
    my $choice = $line;
    chomp $choice;
    
  3. or download this
    for ($i=0; $i<@letters; $i++) {
        if ($letters[$i] eq $guess) {
    ...
            $right=1;
        }
    }