NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Perl::Critic? (Score:1)
Re: (Score:1)
As someone else said, I always write "10 == $x" instead of "$x == 10". It takes just a little getting used to, but it's a MUCH safer style. In autoboxed scalars, it works well too: in Java, "10".equals(str) is better than str.equals("10") because the former handles null gracefully and the latter does not.
For consistency, I try to put the constant first for ev
A Tip (Score:2)
if (10 == $x)
If you forget the extra '=' then most C-style languages will throw a compile-time error.
Can't count the amount of time that's saved me over the last twenty years.