http://qs1969.pair.com?node_id=950148


in reply to Creating Reports with hashes: Use of uninitialized value while adding integers

Shouldn't

my $quantity = (); my $total_quantity = ();

be

my $quantity = 0; my $total_quantity = 0;