Skip to content

Instantly share code, notes, and snippets.

@AndrewRussellHayes
Created September 22, 2014 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndrewRussellHayes/17eb8c305191446dd4fc to your computer and use it in GitHub Desktop.
Save AndrewRussellHayes/17eb8c305191446dd4fc to your computer and use it in GitHub Desktop.
perl sort hash keys numeric
foreach my $distance (sort {$a <=> $b} keys %planets) {
say $distance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment