Perl 4 used '
as a package name separator when importing packages. Perl 5 provides the same feature , but uses ::
to separate package names. Use colons rather than quotes single quotation marks to separate packages.
Noncompliant Code Example
...
Recommendation | Severity | Likelihood | Remediation Cost | Priority | Level |
---|---|---|---|---|---|
DCL04DCL05-PL | lowLow | improbableImprobable | lowLow | P3P6 | L1L2 |
Automated Detection
Tool | Diagnostic |
---|---|
Perl::Critic | Variables::ProhibitPerl4PackageNames |
Bibliography
...