Klonk
view release on metacpan or search on metacpan
lib/Klonk/pragma.pm view on Meta::CPAN
package Klonk::pragma 0.01;
use strict;
use warnings;
use warnings FATAL => qw(uninitialized);
use constant MIN_PERL_VERSION => '5.36';
no feature ':all';
use feature ':' . MIN_PERL_VERSION;
no feature qw(bareword_filehandles);
use Function::Parameters 2;
use Carp ();
method import($class: @items) {
for my $item (@items) {
Carp::croak qq("$item" is not exported by the $class module);
}
( run in 0.255 second using v1.01-cache-2.11-cpan-cba739cd03b )