I guess I'm confused.  What is the difference between:

while true do this then that

and:

while true do this
that

And what is better about:

while true do this otherwise/else that

and:

if true
  while true do this
else
  that

The latter may have a difference if the thing that returns true for the
"if" could be false by the time the "while" is executed, I suppose.

Jeff.
_______________________________________________
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel

Reply via email to