Help for this page

Select Code to Download


  1. or download this
    > perl -MO=Deparse -e 'while($x++ < 10){}'
    while ($x++ < 10) {
        ();
    }
    
  2. or download this
    for(;$x++ < 10;){}
    
  3. or download this
    > perl -MO=Deparse -e 'for(;();){}'
    while (()) {
        ();
    }
    
  4. or download this
    > perl -MO=Deparse -e 'for($x;$y;$z){()}'
    for ($x; $y; $z) {
        ();
    }
    
  5. or download this
    {
        $x; 
    ...
            $z;
        }
    }