in reply to Being impervious to an 'each' reset
However, the code you posted makes me uncomfortable. You seem to be tinkering with some guts that shouldn't be tinkered with.use Data::Dumper; my %hash1 = ( key1 => 'hello', key2 => 'world' ); my %hash2 = %hash1; print Dumper \%hash1; print Dumper \%hash2;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Being impervious to an 'each' reset
by duckyd (Hermit) on Dec 14, 2006 at 00:15 UTC | |
by Fletch (Bishop) on Dec 14, 2006 at 00:27 UTC |