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


in reply to Question preincrement

Have you read the documentation?
Note that just as in C, Perl doesn't define when the variable is incremented or decremented. You just know it will be done sometime before or after the value is returned. This also means that modifying a variable twice in the same statement will lead to undefined behavior. Avoid statements like:
$i = $i ++; print ++ $i + $i ++;
Does the last line look familiar?