Beefy Boxes and Bandwidth Generously Provided by pair Networks RobOMonk
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: references and modules

by bwana147 (Pilgrim)
on Jul 23, 2001 at 09:13 UTC ( [id://98941]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to references and modules

my $node = @_;

$root is a scalar, so you evaluate @_ in scalar context, which yields the number of elements in @_, not its first element.

Here are a couple of ways of doing it:

my $node = shift; my $node = $_[0]; my ($node) = @_;

UPDATE: D'oh! I wrote my whole reply with $root whereas the problem is with $node. Fixed this.

--bwana147

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://98941]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.