Subroutine Perl

sub definedBeforeWithoutArguments
{
   print "definedBeforeWithoutArguments\n";
}
print "Using & and ():\n";
&definedBeforeWithoutArguments();