in reply to changing copy of a hash changes original
The sub fiddleHash is only supposed to alter hash2 but it also alters hash1
Since you use this my %hash2 = %hash1;, then do this
Then you will see why!print %hash2; print %hash1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: changing copy of a hash changes original
by edo (Initiate) on Nov 13, 2014 at 18:44 UTC |