The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Catmandu::Sane - Sensible package boilerplate

SYNOPSIS

    use Catmandu::Sane;

DESCRIPTION

Sensible package boilerplate equivalent to:

    use strict;
    use warnings;
    use 5.012;
    use Carp qw(confess);
    use utf8;