mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 16:39:36 +00:00
19 lines
181 B
Perl
19 lines
181 B
Perl
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;
|