Help for this page

Select Code to Download


  1. or download this
      my $ia = 0 ;
      foreach my $a (@afoo) {
    ...
    
        $ia++ ;
      } ;
    
  2. or download this
      for my $ia (0..$#afoo) {
        my $a = $afoo[$ia] ;
    
    
      } ;
    
  3. or download this
      my $ia = -1 ;
      foreach my $a (@afoo) {
    ...
        ......
    
      } ;