aboutsummaryrefslogtreecommitdiff
path: root/lib/Sietima/Policy.pm
blob: 130cb44ae10eed45c6e5adf2b8451d61a25346bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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</synopsis>. 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;