From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910 use strict;use warnings;use IO::Uncompress::Gunzip qw( $GunzipError );sub load { my $fname = 'foo.gz'; IO::Uncompress::Gunzip->new($fname) or die "gzip failed: $GunzipError\n";}
use
strict;
warnings;
IO::Uncompress::Gunzip
qw( $GunzipError )
;
sub
load {
my
$fname
=
'foo.gz'
IO::Uncompress::Gunzip->new(
)
or
die
"gzip failed: $GunzipError\n"
}