Help for this page

Select Code to Download


  1. or download this
    "my" variable %hash1 masks earlier declaration in same scope
    
  2. or download this
    my (%hash1, %hash2, %hash3);
    
  3. or download this
    # use strict;
    use warnings;
    ...
    # %_ = () for my (%hash1,%hash2,%hash3);
    # %_ = () for (%hash1,%hash2,%hash3);
    print %_, %hash1, "\n";