Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: 2 dimensional array question

by Roger (Parson)
on Sep 05, 2005 at 14:13 UTC ( [id://489230]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    @arr = ( [ qw/ 1 2 3 / ],
             [ qw/ 4 5 6 / ] );
    
  2. or download this
    use Data::Dumper;
    @arr = ( [ qw/ 1 2 3 / ],
    ...
    @arr[0] = qw/ 1 2 3 /;
    @arr[1] = qw/ 4 5 6 /;
    print Dumper(\@arr);
    

Log In?
Username:
Password:

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

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

    No recent polls found