7 lines
69 B
Perl
7 lines
69 B
Perl
|
|
||
|
$variable1 = 5;
|
||
|
|
||
|
$reference = \$variable1;
|
||
|
|
||
|
print $reference;
|