Help for this page

Select Code to Download


  1. or download this
    my @tmp;
    while (my $elem = pop @array) { # or s/pop/shift/
    ...
      }
    }
    @array = @tmp;
    
  2. or download this
    my $i=0;
    while ($i < @array) {
    ...
        print "discarding $x\n";
      }
    }