Help for this page

Select Code to Download


  1. or download this
    for my $a (@foo)
    {
    ...
          $a->[2] .= "!"; # add ! to third field
       }
    }
    
  2. or download this
    for my $i (0 .. $#foo)
    {
    ...
          $foo[$i] = $b;
       }
    }