Help for this page

Select Code to Download


  1. or download this
    while( my ($s, $u_arr) = each %test ){
      foreach my $u_idx ( 0..$#$u_arr ){
    ...
        }
      }
    }
    
  2. or download this
    while( my ($s, $u_arr) = each %test ){
      foreach my $u ( @$u_arr ){
    ...
        }
      }
    }