Help for this page

Select Code to Download


  1. or download this
    $x = 3;
    print ++$x/$x--;
    
  2. or download this
    (++$x/$x)--
  3. or download this
    print $x, $x += 1;
  4. or download this
    print +(($x+=1)+=1) + ($x+=$x++);