Help for this page

Select Code to Download


  1. or download this
    $a = $b unless $error;
    
  2. or download this
    while ($a < $b) if not $error
     { $a++; }
    
  3. or download this
    $a++ while ! $error && $a < $b;
    
    ...
    }
    
    do { $a++ while $a < $b } if ! $error;
    
  4. or download this
    $a++ while not $error || $a >= $b;
    
    $a = $b unless $error or $a >= $b;