in reply to Problem using BEGIN in module and retrieving global data from hash
use DDS; my %f; Dump(\%f); %f = (1,2); Dump(\%f); %f = (3,4); Dump(\%f); %f = (%f, 6,6 ); Dump(\%f); __END__ $HASH1 = {}; $HASH1 = { 1 => 2 }; $HASH1 = { 3 => 4 }; $HASH1 = { 3 => 4, 6 => 6 };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem using BEGIN in module and retrieving global data from hash
by sherr (Novice) on Nov 21, 2010 at 15:24 UTC |