Help for this page

Select Code to Download


  1. or download this
    do {
        ...
    } while($condition)
    
  2. or download this
    while(1) {
        ...
        last unless $condition;
    }
    
  3. or download this
    LOOP:
        ...
        goto LOOP if $condition;