Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

# [[[ HEADER ]]]
use RPerl;
use strict;
our $VERSION = 0.001_000;
# [[[ OO INHERITANCE ]]]
# [[[ 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 ]]]
# [[[ OO PROPERTIES ]]]
our hashref $properties = {};
# [[[ SUBROUTINES & OO METHODS ]]]
sub not_exported {
{ my integer $RETURN_TYPE };
( my integer $arg ) = @ARG;
print 'in Class_C_Importer_00_Good::not_exported(), received $arg = ', $arg, "\n";
return ($arg * -120);
}
sub not_exported_ok {
{ my integer $RETURN_TYPE };
( my integer $arg ) = @ARG;
print 'in Class_C_Importer_00_Good::not_exported_ok(), received $arg = ', $arg, "\n";
return ($arg * -420);
}
1; # end of class