blob: 910a6db84de351f3e6aa35916b0ea90ef1734b1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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;
|