Help for this page

Select Code to Download


  1. or download this
    foreach $products (@{$file->{product}})    {
        print "Widget: " . $products->{title} ." \n";
    ...
        print "  Cost: " . $products->{cost} . "\n";
        print "Colors: " . join(', ', @{$products->{color}})."\n\n";
    }
    
  2. or download this
    <shelf>
        <product>
    ...
            <color>white</color>
        </product>
    </shelf>
    
  3. or download this
    <shelf>
        <product>
    ...
            <color>orange</color>
        </product>
    </shelf>
    
  4. or download this
    sub list {
       if (defined(ref($_[0])) && ref($_[0]) eq 'ARRAY') {
    ...
        print "  Cost: " . $products->{cost} . "\n";
        print "Colors: " . join(', ', list($products->{color}))."\n\n";
    }