Help for this page

Select Code to Download


  1. or download this
    use strict;
    {
    ...
      our $foo;    # same $foo as the other one
      print $foo;
    }
    
  2. or download this
    use strict;
    {
    ...
      my $foo;   # totally different $foo
      print $foo;
    }