diff options
| -rwxr-xr-x | challenge-013/jo-37/perl/ch-1.pl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/challenge-013/jo-37/perl/ch-1.pl b/challenge-013/jo-37/perl/ch-1.pl new file mode 100755 index 0000000000..d3468f4862 --- /dev/null +++ b/challenge-013/jo-37/perl/ch-1.pl @@ -0,0 +1,10 @@ +#!/usr/bin/perl + +use v5.16; +use warnings; +use Date::Manip::Recur; + +say $_->printf('%Y/%m/%d') + for Date::Manip::Recur + ->new("last Friday of every month in $ARGV[0]") + ->dates; |
