The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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;