I am trying to print out my Hash Keys in Perl, one per line. How would I go about doing this?
Does this do it for you?
print "$_\n" for keys %hash;