Perl Security: 2. Avoiding insegure practices: The strict pragma strict 'subs': Non-explicit subroutines Will require explicitly stating that a function call is a function call Using &func Using func() Using &func() In other words, it will not accept barewords and treat them as function calls. Barewords are accepted if they are between curly braces or on the left side of a => operator