Re: do-while style
- Posted by LonnyNettnay Aug 27, 2008
- 944 views
LonnyNettnay said...
while 1 do -- do body of loop if <test condition> then exit -- while end while
Argh! (Is that the correct spelling? :P) Screwed that up! Should be:
if not <test condition> then exit -- while <test condition> is true continue the loop