Help for this page

Select Code to Download


  1. or download this
     
    
    push @mass_info, {"PID" => $PID,
        "IO" => \@IO};
    
  2. or download this
    foreach(@mass_info){
        print "$_{PID} \n";
    }
    
  3. or download this
    $counter = 0;
    foreach (@mass_info){
        print "$mass_info[$counter++]{PID}\n";
    }