Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
          }
       }
    }
    
  2. or download this
    my $n;
    
    ...
          }
       }
    }
    
  3. or download this
    {
       use strict;
       # strict still in effect
    }
    # strict no longer in effect
    
  4. or download this
    {
       my $n;
       # $n accessible.
    }
    # $n no longer accessible.