"John W. Krahn" wrote:
> 
> Anthony wrote:
> >
> > @file = qw (tony boby zombie anthony martine eric charlie);
> 
> It seems like you need newlines at the end of each element.
> 
> my @file = <<FILE;
> tony
> boby
> zombie
> anthony
> martine
> eric
> charlie
> FILE

Sorry, that's not going to work.  :-)

my @file = <DATA>;

Then at the end of the program:

__DATA__
tony
boby
zombie
anthony
martine
eric
charlie



John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to