foo(); #### foo; ## Oops sub foo { print "hello"; } print "\n"; #### foo(); # it works
## foo; ## Oops sub foo { print "hello"; } print "\n"; ##
## foo(); # it works