Help for this page

Select Code to Download


  1. or download this
    MACRO (COMPILED & DEPARSED): while ($var3 < $cons4) {
        $body6;
    ...
        ++$var5
    }
    
  2. or download this
    MACRO (COMPILED & DEPARSED): $var1 = $cons2;
    while ($var3 < $cons4) {
    ...
    continue {
        ++$var5
    }
    
  3. or download this
    SOURCE (COMPILED & DEPARSED): my $x;
    while ($x < 8) {
    ...
    }
    '???';
    
  4. or download this
    SOURCE (COMPILED & DEPARSED): my $x;
    $x = 0;
    ...
        return $_[0] * fact($_[0] - 1);
    }
    
  5. or download this
    REORDER: $var3 = $1;$cons4 = $2;$body6 = $3;$var5 = $4;
    
  6. or download this
    REORDER: $var1 = $1;$cons2 = $2;$var3 = $3;$cons4 = $4;$body6 = $5;$va
    +r5 = $6;
    
  7. or download this
    $i = 0;
    while ($i < 10) {
    ...
        ++$i
    }