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

NAME

warnings - Perl pragma to control optional warnings

SYNOPSIS

    use warnings;
    no warnings;

    use warnings "all";
    no warnings "all";

DESCRIPTION

If no import list is supplied, all possible warnings are either enabled or disabled.

See "Pragmatic Modules" in perlmod and perllexwarn.