Help for this page

Select Code to Download


  1. or download this
    our $x;
    my $x; # gives a warning
    
  2. or download this
    our $x;
    {
        my $x; # ok
    }