Help for this page

Select Code to Download


  1. or download this
    sub foo { print \$_[0], $/ }
    
    foo($i);   # SCALAR(0x81526f0)
    foo(++$i); # SCALAR(0x81526f0)
    foo($i++)  # SCALAR(0x8151c28)
    
  2. or download this
    $i = 0;
    $i = ++$i + ++$i + $i++ + ++$i;