Help for this page

Select Code to Download


  1. or download this
    print map { $_->{State} if $_->{ID} == 32 } @{ $hash->{data} };
    
  2. or download this
     
    for my $state ( @{ $hash->{data} } ) {
        print $state->{State} if $state->{ID} == 32;
    }