Help for this page

Select Code to Download


  1. or download this
    $VAR1 = {
      'Toys' => bless( {
    ...
                  ]
            }, 'ArrayOfToy' )
         };
    
  2. or download this
    for my $toy ( @{$getToysResults->{Toys}->{Toy}} ) {
        for my $l ( @{$toy->{ToyLocations}->{ToyLocation}} ) {
            print "$l->{locationName}\n"
        }
    }