Help for this page

Select Code to Download


  1. or download this
    {
       # do loop stuff to be done at least once
       last if BREAK-CONDITION;
       # do middle loop stuff  <<< This part was left out
       redo;
    }
    
  2. or download this
    {
        # read next line
        last if NoMoreLines
    ...
        #  "last" gets triggered above.)
    }
    # done with items