Subroutine with no arguments defined before it is used
sub definedBeforeWithoutArguments { print "definedBeforeWithoutArguments\n"; } print "Using & and ():\n"; &definedBeforeWithoutArguments();