8 lines
69 B
Perl
8 lines
69 B
Perl
use strict;
|
|
use warnings;
|
|
|
|
sub DateIsInRange ($) {
|
|
return 1;
|
|
}
|
|
1;
|
|
|