Skip to content

Instantly share code, notes, and snippets.

@adamreese
Last active August 29, 2015 14:04
Show Gist options
  • Save adamreese/8be6fe9d04305b97aadf to your computer and use it in GitHub Desktop.
Save adamreese/8be6fe9d04305b97aadf to your computer and use it in GitHub Desktop.
Hashref loop
while ( my ($key, $value) = each(%$hash_ref) ) {
print "$key => $value\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment