Help for this page

Select Code to Download


  1. or download this
    {
      use warnings;
      # warnings are enabled here
    }
    # warnings are not enabled here
    
  2. or download this
    package Foo;
    
    ...
    }
    
    # croak still works here
    
  3. or download this
    {
      package Foo;
    ...
      package Bar;
      my $bob = Person::->new;
    }