From def54825e3381c99dfecb0295162dba8819fd97c Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Sat, 26 Aug 2023 10:20:14 -0400 Subject: [PATCH] put all imports at the top together --- script.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script.pl b/script.pl index edd87b7..d6a125d 100644 --- a/script.pl +++ b/script.pl @@ -1,13 +1,14 @@ use v5.32; + use HTML::TableExtract; use File::Slurp; use Data::Dumper; use List::Util qw(sum); use Text::SimpleTable::AutoWidth; +use WWW::Mechanize (); # log in to Mersenne.org and get results for the last year # excluding everything but PHP and DD results -use WWW::Mechanize (); my $mech = WWW::Mechanize->new(); my $url = 'https://www.mersenne.org/results/?extf=1&exp1=1&execm=1&excert=1&exp_lo=2&exp_hi=&limit=10000';