Help for this page
$i = 5; $i = $i++; print $i, "\n"; # 5\n
$i = 5; $i = ++$i; print $i, "\n"; # 6\n