...
One of the modules that Perl provides for additional safety is the strict
module. It identifies programming constructs that are likely to be errors, such as unqualified and undeclared variables (that might be typos), dangerous references, and unqualified subroutine names. The use strict
pragma must also be used in all Perl code.
...