Why not adopt me?
This distribution is up for adoption!
If you're interested then please contact the PAUSE module admins via
email.
NAME
App::GHPT::Wrapper::Ourperl - Loads strict, warnings, and several other pragmas
DESCRIPTION
Using this wrapper is equivalent to the following:
use strict;
use warnings;
use feature vX.XX; # where the version is equal to the perl binary's version
use autodie ':all';
use mro 'c3';
use open ':encoding(UTF-8)', ':std';
use utf8;
no indirect ':fatal';
no multidimensional;