NAME

Defaults::Mauke - load a few generally useful modules to save typing

SYNOPSIS

use Defaults::Mauke;

## equivalent to
# use strict;
# use warnings; no warnings qw[recursion qw];
# use utf8;
# no bareword::filehandles;
# no indirect qw(:fatal);
## if we have Function::Parameters v0.07:
# use Function::Parameters { fun => "function_strict", method => "method_strict" };
## otherwise:
# use Function::Parameters;

DESCRIPTION

I got tired of starting every Perl file I write with loading the same two or three modules, so I wrote another module that does it for me. If you happen to like the same set of default modules, feel free to use it; if you don't, maybe you can copy and adapt the source.

SEE ALSO

strict, warnings, utf8, perllexwarn, bareword::filehandles, indirect, Function::Parameters.

AUTHOR

Lukas Mai, <l.mai at web.de>

LICENSE

I put this code in the public domain. Do whatever you want with it.