Help for this page

Select Code to Download


  1. or download this
    use constant DEBUG => 0;
    
  2. or download this
    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
    
  3. or download this
    for ( @filename ) {
        my $filename = $_;
        ...
    }
    
  4. or download this
    for my $filename (@filename) {
        ...
    }