Help for this page

Select Code to Download


  1. or download this
    while (not $error and $a < $b) {
       $a++;
    }
    
  2. or download this
    do { while ($a < $b) {
       $a++;
    } } if (not $error);
    
  3. or download this
    do {
       $a++ while ($a < $b);
    } if (not $error);