Re: Labeled Loops?
- Posted by Jeremy Cowgar <jeremy at ??wgar.com> May 13, 2008
- 1227 views
c.k.lester wrote: > > > I think for consistency, for and while loops should be labeled the same. > > They're not consistent now... so what do you mean? The means of labeling and addressing them:
while 1 label "top" do for a = 1 to 10 label "mid" do end for end while
I do not think you should refer to the for loop as "a", I think when you want a label, you give it one for consistencies sake. -- Jeremy Cowgar http://jeremy.cowgar.com

