Help for this page

Select Code to Download


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