Help for this page

Select Code to Download


  1. or download this
    print ++$x, ++$x, ++$x; #333
    print ++$x, $x++, ++$x; #313
    
  2. or download this
    my $x=3;
    print $x, $x=5, ++$x, $x--, $x, $x++, $x=0;   #0006050
    print $x++, $x=5, ++$x, $x--, $x, $x++, $x=0; #3006050
    
  3. or download this
    $x = 3;
    print ++$x/$x--;