10 lines
219 B
Perl
10 lines
219 B
Perl
|
print "Using & and ():\n";
|
||
|
&definedAfterWithoutArguments();
|
||
|
|
||
|
|
||
|
# subroutine with no arguments defined after it is used
|
||
|
sub definedAfterWithoutArguments
|
||
|
{
|
||
|
print "definedAfterWithoutArguments\n";
|
||
|
}
|