Help for this page

Select Code to Download


  1. or download this
    $i=5; print do{ --$1 };              # prints 4
    $i=5; print do{ --$i } while $i;     # prints 43210
    
  2. or download this
    $i=5; print --$1;              # prints 4
    $i=5; print --$i while $i;     # prints 43210
    
  3. or download this
    $i=5;
    print( do{--$i;} ) while $i;
    
  4. or download this
    $i=5;
    do {
         print --$i;
    } while ($i);
    
  5. or download this
    $i = 5;
    while ($i) {
         print --$i;
    }
    
  6. or download this
    my ($i, $j) = (5, 0);
    $j += do {
        print --$i;
    } while ($i);
    print $j; # prints 5.