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.

9 lines
275 B
Perl

5 years ago
#!/usr/local/bin/perl
print " SORTED INDEXES OF THE HASH %ENV \n";
foreach $key (sort (keys %ENV)){
print "key = $key and retrieves: $ENV{$key}\n";
}
print "\n SORTED VALUES OF THE HASH %ENV \n";
foreach $value (sort (values %ENV)){
print "value = $value}\n";
}