http://qs321.pair.com?node_id=528941


in reply to Re: foreach not doing what I expect it to be doing
in thread foreach not doing what I expect it to be doing

Also, but not related to your problem, you should open your bucket.txt only once, otherwise it'll be overwritten on each iteration.
open(DEBUG, ">bucket.txt"); foreach my $bucket ( @bucketList ) { print DEBUG Dumper($bucket); } close(DEBUG);
-- 6x9=42

Replies are listed 'Best First'.
Re^3: foreach not doing what I expect it to be doing
by kwaping (Priest) on Feb 08, 2006 at 23:54 UTC
    That, or open it with >> instead of >. But your solution is better overall, I am just stating a TIMTOWTDI.

    Update: Mental note, read all replies before responding!