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