Re: Good Use of GOTO
- Posted by c.k.lester <euphoric at ck?ester.?om> Jun 06, 2008
- 837 views
Lucius L. Hilley III wrote: > for t=1 to 10 next > if a then > goto "t_continue" > else > -- code > end if > label "t_continue" > end for Good job, Lucius! :) This solidifies my opinion that GOTO is unnecessary. The example just using 'continue' is cleaner, and it's probably faster without GOTO (one less jump?).