http://www.perlmonks.org?node_id=618486


in reply to Re: eval order of args to a sub
in thread eval order of args to a sub

thanks for that explanation, I experimented a bit with that behaviour and found this a fun example:
perl -le'$i=3; print($i, $i++, $i);'
434
perl -le'$i=3; print($i, $i+1, $i);'
343