in reply to Re: Help with error msg "Useless use..."
in thread Help with error msg "Useless use..."
Good catch.
Rather minor correction: The original gets parsed as:
not as( my $pms = join("\n", @foundfiles) ), "\n";
so it is the "\n" that gets thrown away. - tyemy $pms = ( join("\n", @foundfiles), "\n" );
|
|---|