Help for this page

Select Code to Download


  1. or download this
    foreach (@mass_info) {
       print $_->{PID}, "\n";
    }
    
  2. or download this
    foreach my $hash_ref (@mass_info) {
        foreach (keys %{$hash_ref}) {
           print "$_ => ${$hash_ref}{$_}\n";
        }
    }