print "a"; BEGIN { print "b"; } print "c"; #### foo('bar'); sub foo($) { print "foo called: @_\n"; } #### sob foo($); foo('bar'); sub foo($) { print "foo called: @_\n"; }
## foo('bar'); sub foo($) { print "foo called: @_\n"; } ##
## sob foo($); foo('bar'); sub foo($) { print "foo called: @_\n"; }