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

Re: Far More than Everything You've Ever Wanted to Know about Prototypes in Perl -- by Tom Christiansen

by perl-diddler (Chaplain)
on Sep 27, 2010 at 19:40 UTC ( [id://862277]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub foobar($);
    
    foobar(($)@arr);
    
  2. or download this
    use warnings '+mixedtypes';
    @a=(1,2);
    @b=(@a, [3,4]);   #would give warning!
    
  3. or download this
    use warnings '+mixedtypes';
    @a=(1,2);
    $a[1]=[3,4];     #warning - mixed type assigned to @a
    $a[1]=($)[3,4];  #would store the ref into a scalar-typed target witho
    +ut warning
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (1)
As of 2024-04-25 01:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found