Help for this page

Select Code to Download


  1. or download this
    while (@array) {
       my $item = shift @array;  # or pop
    ...
          push(@array, ...);     # or unshift
       ...
    }