in reply to Re^5: Re Execute Lines of Code (labels)
in thread Re Execute Lines of Code
Other advantages are that it doesn't break when
becomesLOOP: while(1) { last LOOP; }
and does the right thing inLOOP: while(1) { while ( condition ) { last LOOP; } }
THING: for my $thing (@things) { redo THING; }
|
|---|