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

NAME

Five::Twenty - Enable 'strict', 'warnings' and 'features :5.20' in the calling code

SYNOPSIS

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

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::Eighteen ':experimantal';
    # now you also have 'lexical subs', 'postderef', 'postderef_qq', 'signatures'

COPYRIGHT

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