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


in reply to Re^2: How to correct code
in thread How to correct code

my @lots_of_thingies; [...] my $all_of_them; foreach my $thingy ( @lots_of_thingies ) { $all_of_them .= $thingy; } print "$all_of_them\n";

By side, this code cries for join...