Subject: | "Unpackaged code" warning for "use strict;" |
For the following code:
#!/usr/local/bin/perl
use strict;
use warnings;
print "Hello!\n";
I get this from perlcritic:
Unpackaged code at line 3, column 1. Violates encapsulation
That doesn't seem right.
ky