I want to create 2-d arrays dynamically in Perl. I am not sure how to do this exactly.My requirement is something like this-
@a =([0,1,...],[1,0,1..],...)
Also I want to name the references to the internal array dynamically. i.e. I must be able to refer to my internal arrays with my chosen names which I will be allocating dynamically. Can someone please help me on this.