Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
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 chanting in the Monastery: (3)
As of 2024-04-25 06:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found