NAME
    uni::perl - all modern features + unicode support in one pragma

VERSION
    Version 0.03

SYNOPSIS
    There is most commonly used pragmas, such as strict, feature, warnings,
    utf8, open, mro. Also almost every modern program uses Encode and Carp

        use uni::perl;

        # is the same as

        use strict;
        use feature qw(say state switch);
        no warnings;
        use warnings qw(FATAL closed threads internal debugging pack substr malloc
                unopened portable prototype inplace io pipe unpack regexp
                deprecated exiting glob digit printf utf8 layer
                reserved parenthesis taint closure semicolon);
        no warnings qw(exec newline);
        use utf8;
        use open (:utf8 :std);
        use mro 'c3';

AUTHOR
    Mons Anderson, "<mons at cpan.org>"

BUGS
    Please report any bugs or feature requests to "bug-uni-perl at
    rt.cpan.org", or through the web interface at
    <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=uni-perl>. I will be
    notified, and then you'll automatically be notified of progress on your
    bug as I make changes.

COPYRIGHT & LICENSE
    Copyright 2009 Mons Anderson, all rights reserved.

    This program is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.