In article <[EMAIL PROTECTED]>, Alan C. wrote:
[...]

> print @foodlist, "\n\n";
> print "$foodlist[0]\n";
> print "$foodlist[1]\n";
> 
> # hmm, @foodlist prints without space between each word; I not sure how
> to get a space put back in between each word there.

One "quick and easy way":

print "@foodlist\n\n";
 

-- 
Kevin Pfeiffer
International University Bremen


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

Reply via email to