NAME
Five::Eightteen - Enable 'strict', 'warnings' and 'features :5.18' in the calling code
SYNOPSIS
package MyPackage;
use Five::Eighteen;
# strict, warnings and featere :5.18
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'
COPYRIGHT
(c) MMXV - Abe Timmerman <abeltje@cpan.org>