Matt Chisholm wrote: > Are break / continue currently abused more than they are used right, > or used to make code difficult to understand? In my experience, using break and continue for anything other than a standard loop-and-a-half makes code hard to follow, even when there is only one loop. Labels would not mitigate that. -- Greg