Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^5: Use method/function signatures with Perl

by dragonchild (Archbishop)
on Dec 06, 2004 at 16:16 UTC ( [id://412681]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub foo (ARRAY $arr) { ... }
    
  2. or download this
    package Bar;
    
    sub new { bless [], shift }
    
  3. or download this
    my $bar = Bar->new;
    
    foo( $bar );
    
  4. or download this
    if ($signature)
    {
    ...
            die "$x doesn't match $signature\n";
        }
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (2)
As of 2024-04-26 00:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found