Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: Multidimensional Arrays

by chb (Deacon)
on Nov 25, 2004 at 10:02 UTC ( [id://410364]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @another = @{$arr[1]};
    for ( $i = 0; $i < 3; $i++ ) {
            print "another[$i] = $another[$i]\n";
    }
    
  2. or download this
    my $another = $arr[1];
    for ( $i = 0; $i < 3; $i++ ) {
            print "another[$i] = $another->[$i]\n";
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-23 06:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found