On Mon, 7 May 2001, Lonya Julin wrote:
>@possWords = push(@possWords,$temp) ;
Err... this is your problem. You are pushing your value onto @possWords,
then returning the number of elements into the same array. I don't think
this is what you want. push returns a $calar value with the new
:@possWords = push(@possWords,$temp) ;
This line is the problem. push() returns the number of elements in the
array after the new elements have been pushed onto it. Get rid of the
"@possWords = " part of this line.
-- tdk