From: "Simon Kröger" Date: 2006-03-31T05:07:10+09:00 Subject: Re: How to break out deeply nested loops? (newbie) Talha Oktay schrieb: > I sometimes need to break out, next or redo deeply nested loops in different > levels instead of the innermost enclosing scope. Is there a facility to > label blocks or loops and redo, next or break to the labeled blocks or > loops as in some other programming languages? > > Thanks in advance. You may use throw, catch or continuations (for the fun of it) or just wrap some of your inner loops in their own method and use return. (i prefer the last version most of the time) cheers Simon