in reply to Re^2: "Generic" variables/Hash of hashes
in thread "Generic" variables/Hash of hashes

i think you should use an Array of Arrays. if you want more verbose code, you could use constants to store whitch row has what in it.

you should read perlref and perllol.

the main idea in perl data structures is, that you store a row in an array and store references to those arrays/rows in another array, so you get something that is usable as two dimensional array.
  • Comment on Re^3: "Generic" variables/Hash of hashes