4 lines
69 B
Perl
4 lines
69 B
Perl
|
$variable1 = 5;
|
||
|
$scalarref = \$variable1;
|
||
|
|
||
|
print (ref $scalarref);
|