in reply to lopping through a hash passed as a reference

Try this:
foreach $k (keys %$hash) { print $k, "=>", $hash->{$k}, "\n"; }
-- vek --

Replies are listed 'Best First'.
Re: Re: lopping through a hash passed as a reference
by mnlight (Scribe) on Oct 25, 2002 at 15:44 UTC
    perfect