Re: Good Use of GOTO
- Posted by c.k.lester <euphoric at ck?ester?com> Jun 06, 2008
- 809 views
Kat wrote: > > Fine bit of code, Chris, but not what CK asked for. CK said you can't use a > goto in a for loop that increments the loop var and acts like a continue. Luc > gave it to CK, and CK hasn't corrected himself yet. Lucius proved that you can do a continue with GOTO. However, The example just using 'continue' is cleaner, and it's probably faster without GOTO (one less jump?).