in reply to order of arguments evaluated
Update: also don't do things like:
#!/usr/local/bin/perl -w use strict; my $i = 1; $i = $i++ + $i; print $i; [download]