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 number of
elements in your array.  Unless you need to know how many elements are in
your array, just say push(@possWords, $temp)

-- Brett
                                   http://www.chapelperilous.net/btfwk/
------------------------------------------------------------------------
Pyros of the world... IGNITE !!!



Reply via email to