Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Passing $2 to a sub

by baku (Scribe)
on Feb 13, 2001 at 23:03 UTC ( [id://58194]=note: print w/replies, xml ) Need Help??


in reply to Passing $2 to a sub

You can't use $_ in stead of @_ like that. You want to change the subroutine to one of:

sub createTable { my $value = shift; print $value; } # or sub createTable { print $_[0]; # subscript means array }

The $x syntax only works for @x variables when followed by a subscript in []'s. See perlvars for LOTS of details :-)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (6)
As of 2024-03-28 21:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found