aboutsummaryrefslogtreecommitdiff
path: root/challenge-024
diff options
context:
space:
mode:
authorPaulo Custodio <pauloscustodio@gmail.com>2021-11-03 16:10:13 +0000
committerPaulo Custodio <pauloscustodio@gmail.com>2021-11-03 16:10:13 +0000
commitd12a3c58624c219f252e34b926797aa1b68a69fa (patch)
tree507a3ff52cb4a2185864239190ba13155df1cbf8 /challenge-024
parentdd979819d8042c04464033dcff0c2853546e34c1 (diff)
downloadperlweeklychallenge-club-d12a3c58624c219f252e34b926797aa1b68a69fa.tar.gz
perlweeklychallenge-club-d12a3c58624c219f252e34b926797aa1b68a69fa.tar.bz2
perlweeklychallenge-club-d12a3c58624c219f252e34b926797aa1b68a69fa.zip
use Modern::Perl
Diffstat (limited to 'challenge-024')
-rw-r--r--challenge-024/paulo-custodio/perl/ch-2.pl4
-rw-r--r--challenge-024/paulo-custodio/test.pl4
2 files changed, 2 insertions, 6 deletions
diff --git a/challenge-024/paulo-custodio/perl/ch-2.pl b/challenge-024/paulo-custodio/perl/ch-2.pl
index 6c85b9ba4d..6e90773eed 100644
--- a/challenge-024/paulo-custodio/perl/ch-2.pl
+++ b/challenge-024/paulo-custodio/perl/ch-2.pl
@@ -16,9 +16,7 @@
# Solution: store the inverted index in a SQLite database, use DBI to access it
-use strict;
-use warnings;
-use 5.030;
+use Modern::Perl;
use Path::Tiny;
use DBI;
use DBD::SQLite;
diff --git a/challenge-024/paulo-custodio/test.pl b/challenge-024/paulo-custodio/test.pl
index 34227f7310..1eed5b9682 100644
--- a/challenge-024/paulo-custodio/test.pl
+++ b/challenge-024/paulo-custodio/test.pl
@@ -1,8 +1,6 @@
#!/usr/bin/perl
-use strict;
-use warnings;
-use 5.030;
+use Modern::Perl;
use Path::Tiny;
use Test::More;
use WWW::Mechanize;