In Perl, there is an ability to break an outer cycle like this:
AAA: for my $stuff (@otherstuff) {
         for my $foo (@bar) {
             last AAA if (somethingbad());
         }
      }
(syntax may be wrong), which uses a loop label to break the outer loop from inside the inner loop. Is there anything similar in Ruby?
 
     
     
     
     
     
     
     
     
     
     
    