Help for this page

Select Code to Download


  1. or download this
    while (...each(%h)...) {
       ...
       last if ...;
       ...
    }
    
  2. or download this
    keys(%h);  # Reset iterator.
    while (...each(%h)...) {
    ...
       last if ...;
       ...
    }