package Sietima::Policy; use v5.36; use strict; use warnings; use feature ':5.36'; # VERSION # ABSTRACT: pragma for Sietima modules =head1 SYNOPSIS use v5.36; use strict; use warnings; use feature ':5.36'; or just: use Sietima::Policy; =head1 DESCRIPTION This module imports the pragmas shown in the L. All Sietima modules use it. =cut sub import { # These affect the currently compiling scope, # so no need for import::into strict->import; warnings->import; feature->import(':5.36'); return; } 1;