> How Do I initialize an empty array so thtat I don't get an unitiialized > error? > > ... > my @rows; > > I thought I could do something like @rows = new (); but it's not working. >
Drop the 'new': my @rows = (); http://danconia.org -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]