Lee Jenkins wrote:
>> repeat;
>>  begin
>>  ReadLn(sRead);
>>  bDone := self.ProcessSingleVar(sRead);
>>  end;
>> until (bDone);
> 
> LOL.  Just makes it more readable for me.  When I have to come back to

The above is more readable than the following to you ? (Just asking)

repeat
  ReadLn(sRead);
  bDone := self.ProcessSingleVar(sRead);
until bDone;

- no semicolon after repeat
- no begin/end pair within repeat/until
- no parenthesis needed for simple expression after until.

Micha

_________________________________________________________________
     To unsubscribe: mail [EMAIL PROTECTED] with
                "unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to