Skip to content

Instantly share code, notes, and snippets.

@arodland
Created November 12, 2010 03:21
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 arodland/673683 to your computer and use it in GitHub Desktop.
Save arodland/673683 to your computer and use it in GitHub Desktop.
while (my ($sense, $sense_info) = each %sense_information_hash) {
print "\nKey => $sense\n";
print " Count(sense) => $sense_info->[0]\n";
while (my ($word, $count) = each %{ $sense_info->[1] }) {
print " Word wt sense => $word\n";
print " Count => $count\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment