#!/usr/bin/perl
# [[[ PREPROCESSOR ]]]
# <<< EXECUTE_SUCCESS: 'in Package_B_Exporter_00_Good::exported_ok(), received $arg = 17' >>>
# <<< EXECUTE_SUCCESS: 'after exported_ok(17), received $exported_ok_retval = 408' >>>
# [[[ 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 main::not_exported(), received $arg = '
,
$arg
,
"\n"
;
return
(
$arg
* 34);
}
# [[[ OPERATIONS ]]]
my
integer
$exported_ok_retval
= exported_ok(17);
'after exported_ok(17), received $exported_ok_retval = '
,
$exported_ok_retval
,
"\n"
;