in reply to Re: Hash references moving between modules
in thread Hash references moving between modules
and assigning into a hashref can be done in the same way:$scalar = $$hashref{key};
Perhaps taking a look at References quick reference will sum it up nicely.my $hashref = {}; $$hashref{key} = $scalar;
Thanks,
Scott
Project coordinator of the Generic Model Organism Database Project
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Hash references moving between modules
by castaway (Parson) on Jan 14, 2003 at 14:39 UTC |