Help for this page

Select Code to Download


  1. or download this
    my @products;
    
    ...
        my $opts = $product->{opts};
        print($name, ': ', join(' ', @$opts), "\n");
    }
    
  2. or download this
    my %products;
    
    ...
        my $opts = $products{$name};
        print($name, ': ', join(' ', @$opts), "\n");
    }