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

NAME

sane - provide sane default pragmas

SYNOPSIS

  use sane;

  # is the same as:

  use strict;
  use warnings;
  use utf8;
  use feature (sprintf(":%vd", $^V));

DESCRIPTION

sane pragma is written for people who are tired of typing hackneyed expressions. Every perl mongers write the same code on the top of scripts.

Assuming that it is true, what we should do about it is shorten it.

AUTHOR

punytan <punytan@gmail.com>

SEE ALSO

LICENSE

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