Help for this page

Select Code to Download


  1. or download this
    foreach my $e (@{$getToysResults->{Toys}{Toy}}){
        print "$e->{ToyLocations}{ToyLocation}{locationName}\n";
    }
    
  2. or download this
    foreach my $e (@{$getToysResults->{Toys}{Toy}}) {
        my $location_array_ref = $e->{ToyLocations}{ToyLocation};
    ...
            print $location_array_hash_ref->{locationName}, "\n";
        } 
    }