Help for this page

Select Code to Download


  1. or download this
    for my $i(0..$#list1){
       $list1[$i] += $list2[$i];
    }
    
  2. or download this
    my @list2;
    push @list2, $some_value, $some_other_value, $this_variable, $that_var
    +iable;
    for my $i(0..$#list1){
       $list1[$i] += $list2[$i];
    }