Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Tutorial on arguments for the new

by Joost (Canon)
on Dec 11, 2006 at 21:11 UTC ( [id://589152]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    foo($bar, $baz); 
    # ...
    ...
         print "$_";   
    #will first print out the contents of $bar, then $baz 
    ...
    
  2. or download this
    sub foo {
      print for @_;
    ...
    sub foo {
      print @_;
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-20 00:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found