You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
320 B
Perl

5 years ago
#!/usr/local/bin/perl
%Inventory = (a=>45_000.00,b=>120.00,c=> 450_000.00,d=>40.00);
$sortHash = \%Inventory;
@keyList = sort sortHashByValue keys %Inventory;
foreach $key (@keyList){
print "key==>$key, \tprice==>$Inventory{$key}\n";
}
sub sortHashByValue(){
$$sortHash{"$a"} <=> $$sortHash{"$b"};
}