in reply to Re: Re: Line input clipped from my array?
in thread Line input clipped from my array?

Additionally,
#!/usr/local/bin/perl -w use strict; my @a=<STDIN>; print $a[0]; print $a[1]; print $a[2];

returns the contents of  $a[1] and  $a[2] but nothing (not even a newline) for  $a[0] .
Arghhhh!
jg