http://www.perlmonks.org?node_id=11125797


in reply to Re: why avoid & on function call
in thread why avoid & on function call

The placement of a sub is important onlymainly when you call it without parentheses, i.e. as a bareword. When such a call is being parsed, the subs already parsed are recognised and the bareword is parsed as their call, otherwise without strict, the bareword is stringified, and with strict, you get an error.
#!/usr/bin/perl use warnings; print "", frob(); # 12 print "", frob; # frob use strict; print "", frob(); # 12 # print "", frob; sub frob { 12 }
Uncommenting the last last print line would make the source unparsable with
Bareword "frob" not allwoed while "strict subs" in use

Updated: as shown in the text, thanks kcott.

map{substr$_->[0],$_->[1]||0,1}[\*||{},3],[[]],[ref qr-1,-,-1],[{}],[sub{}^*ARGV,3]