Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Array mysteriously growing

by ikegami (Patriarch)
on Mar 09, 2006 at 15:24 UTC ( [id://535410]=note: print w/replies, xml ) Need Help??


in reply to Array mysteriously growing

This post doesn't answer your question; it's about an error in your code.

Don't use
my $var = ... if ...;
Use
my $var; $var = ... if ...;
The former can leave Perl's guts in a twist.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-16 20:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found