The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910 #!/usr/bin/env perl -wuse strict;use warnings;use Test::More qw( no_plan );use App::Sys::Info;App::Sys::Info->run;ok(1, 'Module loaded ok');
#!/usr/bin/env perl -w
use
strict;
warnings;
Test::More
qw( no_plan )
;
App::Sys::Info;
App::Sys::Info->run;
ok(1,
'Module loaded ok'
);