Struppi: Spalten sortieren

Beitrag lesen

Klaus hatte mir einen Link zugeschickt, da sprach man von diesen zweidimensionalen Arrays, ich hatte nur den Sprachgebrauch angewandt.

http://www.perldoc.com/perl5.8.4/pod/perldsc.html

The most important thing to understand about all data structures in Perl -- including multidimensional arrays--is that even though they might appear otherwise, Perl @ARRAYs and %HASHes are all internally one-dimensional. They can
                                            ^^^^^^^^^^^^^^^^^^^^^^^^^^
hold only scalar values (meaning a string, number, or a reference). They cannot directly contain other arrays or hashes, but instead contain references to other arrays or hashes.

Struppi.