Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: Invalid argument

by Andrew_Levenson (Hermit)
on Dec 01, 2006 at 20:31 UTC ( [id://587297]=note: print w/replies, xml ) Need Help??


in reply to Re: Invalid argument
in thread Invalid argument

Wow, I ask for advice and get an entire mini-tutorial.
THAT'S why I love it here.

Thanks for the schooling, I never knew that you could specify variables to be used in a subroutine!

Replies are listed 'Best First'.
Re^3: Invalid argument
by suaveant (Parson) on Dec 01, 2006 at 20:40 UTC
    my and local work in any scope...
    my $test = 1; print "$test\n"; { my $test = 2; print "$test\n"; test(3); } print "$test\n"; sub test { my($test) = @_; # parens make list assignment, otherwise you get the + count of items in @_ print "$test\n"; } #prints... 1 2 3 1
    You can also do something like
    while(my $var = shift @ARGV) { print "$var\n"; # var is scoped only in the while loop }

                    - Ant
                    - Some of my best work - (1 2 3)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-19 19:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found