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


in reply to Re: Re: Win32 Opening files
in thread Win32 Opening files

Whats the deal with this line:
foreach my $mail ( @mail ) {
or this :
my @mail; @mail = @_;
Why not just say:
foreach my $mail (@_) {
and using $mail as the looping element of @mail is kind of silly... I dont know that perl would even let you do that (at least not with strict and warnings).

--
Laziness, Impatience, Hubris, and Generosity.