Help for this page

Select Code to Download


  1. or download this
    do {{
        next if $x == $y;
        # do something here
    }} until $x++ > $z;
    
  2. or download this
    LOOP: { 
            do {
    ...
                # do something here
            } while $x++ <= $z;
    }