NAME

Klonk::pragma - enable/disable common perl features

SYNOPSIS

use Klonk::pragma;
## equivalent to:
# use v5.36;
# use warnings 'all', FATAL => 'uninitialized';
# no feature 'bareword_filehandles';
# use Function::Parameters 2;

DESCRIPTION

Loading this module automatically enables strict, warnings (while making uninitialized warnings a fatal error), the :5.36 feature bundle (but disables bareword_filehandles), and Function::Parameters in the current lexical scope.