6 lines
95 B
Perl
6 lines
95 B
Perl
|
sub subroutine
|
||
|
{
|
||
|
print "Hello!\n";
|
||
|
}
|
||
|
$codereference = \&subroutine;
|
||
|
&$codereference;
|