Help for this page

Select Code to Download


  1. or download this
    while (my $value = $it->next()) {
      # stuff
    ...
         # for all but the last value
      }
    }
    
  2. or download this
    while (@array) {
      my $value  = shift @array;
    ...
         # for all but the last value
      }
    }