Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Multidimensional Arrays

by Anonymous Monk
on Aug 25, 2004 at 02:19 UTC ( [id://385560]=note: print w/replies, xml ) Need Help??


in reply to Multidimensional Arrays

Thanks for this tutorial, a quick google search lead me to this page. Got the answer I needed faster than by searching the perl docs.

I was trying...
@array[0] = ("a","b","c");
but that didn't work.
What I needed was
@array[0] = ["a","b","c"];
so that I can read a value directly with
$value = $array[$y][$x];

Thanks again.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-03-29 15:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found