Help for this page

Select Code to Download


  1. or download this
    for (my $i = 3; $i >= 0; $i--) {
      close($handles[$i]);
    }
    
  2. or download this
        close $handles[$_] for reverse 0..3;