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