Help for this page

Select Code to Download


  1. or download this
    use warnings;
    
  2. or download this
    use warnings FATAL => 'all';
    
  3. or download this
    {
        no warnings 'uninitialized';
        # etc.
    }
    
  4. or download this
    use warnings ; # FATAL => 'all';