in reply to Re: Another commenting question,
in thread Another commenting question,
Actually, I think that's a poor comment, unless the text around it makes it make more sense. I'd prefer to see something like:$x++; # keep track of how many users have logged in
Hmm. On re-reading your comment, I can't tell whether you meant total number of users that have ever logged in, or whether it's a current count. That's probably why I already flagged it as bad. {grin}$x++; # $x is number of users currently logged in, and we have a new o +ne
Even better would be to never use $x for something like that:
That's a lot better.$current_users++; # we have a new one
-- Randal L. Schwartz, Perl hacker
|
---|
Replies are listed 'Best First'. | |
---|---|
Better variable name
by tenya (Beadle) on Mar 21, 2001 at 02:53 UTC |