Re: Anonymous Reference Question

2005-09-28 Thread Jeff 'japhy' Pinyan
On Sep 28, Dave Adams said: #!/usr/bin/perl -w use strict; use Data::Dumper; my $grades = {"tom"=> 50, "sally"=> 60, "harry" => 70}; print Dumper($grades) ; And perl gives me this: $VAR1 = { 'harry' => 70, 'sally' => 60, 'tom' => 50 }; QUESTION: Does this mea

Anonymous Reference Question

2005-09-28 Thread Dave Adams
When I do this: #!/usr/bin/perl -w use strict; use Data::Dumper; my $grades = {"tom"=> 50, "sally"=> 60, "harry" => 70}; print Dumper($grades) ; And perl gives me this: $VAR1 = { 'harry' => 70, 'sally' => 60, 'tom' => 50 }; QUESTION: Does this mean that $