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

NAME

Five::TwentyTwo - Enable 'strict', 'warnings' and 'features :5.22' in the calling code

SYNOPSIS

    package MyPackage;
    use Five::Eighteen;
    # strict, warnings and featere :5.22

Perl 5.18 introduces experimental features that warn. These warnings can be switched off with special 'no warnings' catagories. Use the :experimental import-tag to enable these features without warnings.

    package MyPackage;
    use Five::TwentyTwo ':experimantal';
    # now you also have:
    # 'lexical subs', 'postderef', 'postderef_qq', 'signatures', 'bitwise',
    # 'refaliasing'

COPYRIGHT

(c) MMXV - Abe Timmerman <abeltje@cpan.org>