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

NAME

FiveX - A set of modules that enable strict and warnings and features

SYNOPSIS

    #! /usr/bin/perl
    use Five::Ten; # use 5.010; use feature ':5.10'; use strict; use warnings;
    say "Turned on features for 5.10";

DESCRIPTION

Either of these modules turns on strict, warnings and features in the calling package.

use feature

Starting with perl version 5.18, some features are experimental. These will not be switched on by default, you'll have to add the ':experimental' tag.

experimental_versions

Returns an ordered list of versions that have warings in the experimental:: class without a feature category.

experimental_warnings($version)

Returns a listref of the warnings in the experimental:: class for the given perl version.

COPYRIGHT

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