in reply to Newbie Question

$stuff[0] looks to be the first element of the array @stuff. Do you see @stuff anywhere in your code? Data::Dumper may help.
use Data::Dumper; print Dumper(\%nums);

Update: Please choose a better title for your node. See How do I compose an effective node title?.

Replies are listed 'Best First'.
Re^2: Newbie Question
by pgaraitonandia (Novice) on Feb 17, 2009 at 20:42 UTC
    thank you were right.