The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

package EnableModule;
use strict;
sub set_x
{
my $x_ref = shift;
${$x_ref} .= "TwoHundred";
my $x = ${$x_ref};
my $t = $x;
$t .= "Foo";
}
1;