Help for this page

Select Code to Download


  1. or download this
    my  $foo  = 1;
    our $foo = 2;
    print $foo  ; # prints 2
    
  2. or download this
    our $foo  = 2;
    my  $foo  = 1;
    print $foo  ; # prints 1
    
  3. or download this
    no warnings;
    
    ...
    package Bar;
    no strict;
    print 'Bar: '. $foo, "\n";   # $foo is undefined