in reply to RE: RE: Hash Push
in thread Hash Push
sub GetData { my %data; sub Recursive { # do stuff # push onto %data # call Recursive if appropriate } Recursive(); return \%data; } my %data = %{GetData()}; # Can this be cleaner?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: RE: RE: Hash Push
by merlyn (Sage) on Aug 16, 2000 at 22:29 UTC |