do {{ $bar; baz() or next; }} while $foo; #### { do { $bar; baz() and last; } while $foo; } #### LOOP: { do {{ $bar; baz() or next; quux() and last LOOP; }} while $foo; } #### while(1) { $bar; baz() or next; quux() and last; }
## { do { $bar; baz() and last; } while $foo; } ##
## LOOP: { do {{ $bar; baz() or next; quux() and last LOOP; }} while $foo; } ##
## while(1) { $bar; baz() or next; quux() and last; }