Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Solution.

by BrowserUk (Patriarch)
on Jun 20, 2003 at 22:50 UTC ( [id://267735]=note: print w/replies, xml ) Need Help??


in reply to Solution.
in thread "Useless use of private variable in void context"

++ for letting us know the resolution.

On the comma thing. I have a habit of starting out with a lines like

$i++ if $some_condition; #or push @a, 'fred' while @a < 10;

And then realising that I need to do something else in the if or while and so instead of restructuring the line to the

if(..) { ....; ....; } or

while( ... ) { ...; ....; }

I do

$j-- , $i++ if $some_condition; #or print scalar @a , push @a, 'fred' while @a < 10;

This is usually a temporary step while I try something out or when debugging, but I've been bitten enough times by the "comma thing" to recognise the symtoms.


Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"When I'm working on a problem, I never think about beauty. I think only how to solve the problem. But when I have finished, if the solution is not beautiful, I know it is wrong." -Richard Buckminster Fuller


Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://267735]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (8)
As of 2024-04-23 12:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found