Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

(tye)Re: Possible pitfall with Slices

by tye (Sage)
on Nov 07, 2000 at 03:19 UTC ( [id://40279]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        ( $x, $y )= $z;
        @array[1,2]= $z;
        @hash{qw(a,b)}= $z;
        @hash{@array}= $z x @array; # unless 1==@array
    
  2. or download this
        ( $x )= $z;
        ( $x, $y )= ( $z );
    ...
        @array[1,2]= ( $z );
        @hash{qw(a,b)}= ( $z );
        @hash{@array}= ( $z ) x @array;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (6)
As of 2024-03-28 10:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found