in reply to Re^2: Hash from packagein thread Hash from package
You're probably asking the wrong question. "How do I get key values from a hash?" is more likely what you're after.
foreach my $key (keys %$car) { print "$key = $car->{$key}\n"; } [download]