Help for this page

Select Code to Download


  1. or download this
    >perl -le"$i=3; print($i+0, ++$i, $i+0);"
    344
    
  2. or download this
    >perl -le"$i=3; print($i, ++$i, $i);"
    444
    
  3. or download this
    # $i=3; print($i+0, ++$i, $i+0);
    $i = 3;
    ...
       $anon1 = $i+0;  alias $_[2] = $anon1;
       &print
    };
    
  4. or download this
    # $i=3; print($i, ++$i, $i);
    $i = 3;
    ...
       $i;         alias $_[2] = $i;
       &print
    };
    
  5. or download this
    perl -le"$i=3; sub { $_[1]++; print @_ }->($i+0, ++$i, $i+0, $i);"