The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Stuff::Features - Set up code compiling and excecution features

SYNOPSIS

  use Stuff::Features;

is a short replacement for

  use strict;
  no warnings;
  use warnings( FATAL => qw/
    closure deprecated glob
    closed layer pipe
    pack portable severe
    digit printf prototype reserved semicolon
    taint threads unpack
  / );
  use feature qw/say switch/;
  use utf8;
  use open qw/:utf8 :std/;

SEE ALSO

Stuff

AUTHOR

Nikita Zubkov <nikzubkov@gmail.com>.