Help for this page

Select Code to Download


  1. or download this
    my @a = (1 .. 9);  # for instance!!
    for my $e (@a) {
      $e += 1;
    }
    
  2. or download this
    my @a = (1 .. 9);  # for instance!!
    for my $e (@a) {
      my $ee = $e  # copy current element
      $ee += 1;
    }