Help for this page

Select Code to Download


  1. or download this
              loop
                read in a value;
                if value = Sentinel then exit;
                process the value
              endloop;
    
  2. or download this
              read in a value;
              while value != Sentinel do begin
                process the value;
                read in a value
              end;