Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    
    ...
    
    print "\@array_items_weight is now... ";
    print Dumper \@array_items_weight;
    
  2. or download this
    my @combined = pairwise { [$a, $b] } @array_items, @array_items_weight
    +;