![]()
open(FOO,$foo) or die "Can't open $foo: $!";is better than
die "Can't open $foo: $!" unless open(FOO,$foo);because the second way hides the main point of the statement in a modifier. On the other hand
print "Starting analysis\n" if $verbose;is better than
$verbose && print "Starting analysis\n";because the main point isn't whether the user typed -v or not.
Similarly, just because an operator lets you assume default arguments doesn't mean that you have to make use of the defaults. The defaults are there for lazy systems programmers writing one-shot programs. If you want your program to be readable, consider supplying the argument. Along the same lines, just because you *CAN* omit parentheses in many places doesn't mean that you ought to:
return print reverse sort num values %array; return print(reverse(sort num (values(%array))));When in doubt, parenthesize. At the very least it will let some poor schmuck bounce on the % key in vi. Even if you aren't in doubt, consider the mental welfare of the person who has to maintain the code after you, and who will probably put parentheses in the wrong place.
LINE:
for (;;) {
statements;
last LINE if $foo;
next LINE if /^#/; # Match hash at beginning of line
statements;
}
Function and method names seem to work best as all lowercase. E.g., $obj->as_string(). You can use a leading underscore to indicate that a variable or function should not be used outside the package that defined it.
$ALL_CAPS_HERE constants only (beware clashes with perl vars!) $Some_Caps_Here package-wide global/static $no_caps_here function scope my() or local() variables
print <<TO_LABEL; text text text TO_LABEL
$IDX = $ST_MTIME; $IDX = $ST_ATIME if $opt_u; $IDX = $ST_CTIME if $opt_c; $IDX = $ST_SIZE if $opt_s; mkdir $tmpdir, 0700 or die "can't mkdir $tmpdir: $!"; chdir($tmpdir) or die "can't chdir $tmpdir: $!"; mkdir 'tmp', 0777 or die "can't mkdir $tmpdir/tmp: $!";
opendir(D, $dir) or die "can't opendir $dir: $!";
tr [abc] [xyz];
From the perldoc, written in HTML by Diederik van der Boor at 14 October 2001