Help for this page

Select Code to Download


  1. or download this
    package Bar;
    use warnings;
    ...
    our $x;
    
    1;
    
  2. or download this
    use warnings;
    use strict;
    ...
    $Bar::x = 1; # warning with plain 'require'
    
    #$Bar::x = $Bar::x = 1; # no warning