RE: how to initialise a two dimensional array

2002-09-18 Thread NYIMI Jose (BMB)
-Original Message- From: pravesh biyaNI [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 3:56 PM To: [EMAIL PROTECTED] Subject: how to initialise a two dimensional array Hi I am using a two dimentional array!! but the script on running gives an error

RE: how to initialise a two dimensional array

2002-09-18 Thread Nikola Janceski
you only need to declare with my() the first array. all the other arrays are just references to anonymous arrays (if you create the 2-d array like most people do). ex: my(@arr); $arr[0] = [ qw( 1 2 3 4 5 ) ]; -Original Message- From: pravesh biyaNI [mailto:[EMAIL PROTECTED]] Sent:

Re: how to initialise a two dimensional array

2002-09-18 Thread Chas Owens
On Wed, 2002-09-18 at 09:56, pravesh biyaNI wrote: Hi I am using a two dimentional array!! but the script on running gives an error global symbol requires explicit package name. how to use my () with a two dimentional array help awaited pravesh First you must recognize that there