8 lines
85 B
Perl
8 lines
85 B
Perl
sub printem
|
|
{
|
|
print shift;
|
|
}
|
|
|
|
$coderef = \&printem;
|
|
|
|
print (ref $coderef); |