On Saturday, August 10, 2002, at 12:43  AM, Shannon Murdoch wrote:

> while(<FILE>){
>   push (@array,$_);
> }

This doesn't answer your question, but just as a space saver (perhaps even 
optimization, I'm not sure), you might want to try this syntax:

my @array = <FILE>;

David

--
David Wheeler                                     AIM: dwTheory
[EMAIL PROTECTED]                                 ICQ: 15726394
http://david.wheeler.net/                      Yahoo!: dew7e
                                                Jabber: [EMAIL PROTECTED]

Reply via email to