Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
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 ( #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? | Other CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (4)
As of 2023-03-20 22:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (59 votes). Check out past polls.

    Notices?