in reply to Re: Re: Should I learn Perl?
in thread Should I learn Perl?

Yes, there are multi-dimensional arrays as well - we normally call them Arrays of Arrays (AoA). And accessing them is as easy as $array[3][4][0], but in order to understand them properly, you'll have to learn about the different data types in perl: scalars, arrays and hashes ... and references.

If you have access to a computer with installed perl, I suggest, you open up a command line shell and try typing perldoc perl. You could follow this up by perldoc perldata and perldoc perlreftut ... then you'll understand some more. And if you have questions, come back and ask here - that's what we are here for, after all.

If you don't have perl installed, then you could also read this up online at http://www.perldoc.com - though I can promise you'll soon want to start playing around with perl ;-)

If you add extra elements, what would their coordinates be
Whatever you choose them to be. You can add elements to the front, to the back or into the middle of an array. Sorry, but with your current level of knowledge that has to be sufficient as an explanation ...

-- Hofmator