in reply to macls
use constant DEBUG => 0;
print gmtime($object) ."\n" if $DEBUG == "1"; print gmtime($object) ."\n" if $DEBUG; # ahem, but since we'll be using the constant DEBUG print gmtime($object) ."\n" if DEBUG; # sorry i didn't mention this ea +rlier
can be more consisely written as:for ( @filename ) { my $filename = $_; ... }
for my $filename (@filename) { ... }
Jeff
R-R-R--R-R-R--R-R-R--R-R-R--R-R-R--
L-L--L-L--L-L--L-L--L-L--L-L--L-L--
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (jeffa) Re: macls.pl
by snafu (Chaplain) on Jun 06, 2001 at 22:42 UTC | |
|
Re: (jeffa) Re: macls.pl
by snafu (Chaplain) on Jun 06, 2001 at 22:23 UTC |