Help for this page
$ perl -e'$x=3; CORE::say for $x++, $x++' 3 4
$ perl -e'$x=3; CORE::say for ++$x, ++$x' 5 5
$ perl -e'$x=3; CORE::say for $x, $x++' 4 3