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
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 $