From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
use utf8;
sub run {
my ($class, @args) = @_;
my $module = 'Anego';
system 'perldoc', $module;
}
1;