Help for this page

Select Code to Download


  1. or download this
    my $foo;
    {
        local $foo;
    }
    
  2. or download this
      Can't localize lexical variable $foo at ...
    
  3. or download this
    my %hash = (a => 'one', b => 'two', c => 'three' );
    use Data::Dumper;
    ...
        print Dumper \%hash;
    }
    print Dumper \%hash;