Help for this page

Select Code to Download


  1. or download this
    foreach my $sub_ref (keys %test_procs){
         foreach(@procs){
              print "$test_procs{$sub_ref}\n" if $sub_ref eq $_;
         }
    }
    
  2. or download this
    foreach(@procs){
         print "$test_procs{$_}\n" if $test_procs{$_}; #If it's defined.
    }