Help for this page

Select Code to Download


  1. or download this
    {
        my $foo = 42;
    ...
    }
    
    # $foo is no longer in scope here
    
  2. or download this
    use constant DEBUG => 0;
    
    ...
    {
        # This code will not be compiled
    }