# [[[ HEADER ]]]
use
RPerl;
use
strict;
use
warnings;
our
$VERSION
= 0.001_000;
# [[[ CRITICS ]]]
## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator
## no critic qw(RequireInterpolationOfMetachars) # USER DEFAULT 2: allow single-quoted control characters & sigils
# [[[ INCLUDES ]]]
# [[[ SUBROUTINES ]]]
sub
not_exported {
{
my
integer
$RETURN_TYPE
};
(
my
integer
$arg
) =
@ARG
;
'in Package_B_Importer_00_Good::not_exported(), received $arg = '
,
$arg
,
"\n"
;
return
(
$arg
* -21);
}
sub
not_exported_ok {
{
my
integer
$RETURN_TYPE
};
(
my
integer
$arg
) =
@ARG
;
'in Package_B_Importer_00_Good::not_exported_ok(), received $arg = '
,
$arg
,
"\n"
;
return
(
$arg
* -24);
}
1;
# end of class