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.