The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
123456789101112131415161718 package EnableModule;use strict;use warnings;sub set_x{ my $x_ref = shift; ${$x_ref} .= "TwoHundred"; my $x = ${$x_ref}; my $t = $x; $t .= "Foo";}1;
package
EnableModule;
use
strict;
warnings;
sub
set_x
{
my
$x_ref
=
shift
;
${
} .=
"TwoHundred"
$x
= ${
};
$t
.=
"Foo"
}
1;