On Thu, 2006-06-04 at 16:06 -0500, JupiterHost.Net wrote:
> my $fruit = $hash->{'food'}{'fruit'}[0];
> print "Name: $fruit->{'name'}\n", "Color: $fruit->{'color'}\n";
That should be:
my $fruit = $hash{'food'}{'fruit'}[0];
'hash' is a real hash, not a reference.
--
__END__
Just my 0.00000002 million dollars worth,
--- Shawn
"For the things we have to learn before we can do them, we learn by doing them."
Aristotle
* Perl tutorials at http://perlmonks.org/?node=Tutorials
* A searchable perldoc is at http://perldoc.perl.org/
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>