Help for this page

Select Code to Download


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