Help for this page

Select Code to Download


  1. or download this
    use strict;
    our $foo = 123;
    ...
    our $foo;
    our $foo;
    print(our $foo, "\n");
    
  2. or download this
    use strict "refs";
    $foo = 123;      # ok
    print "$foo\n";  # still ok