I am looping through a hash:
foreach $key (sort (keys(%myHash))) {
##some code;
}
Can I send control back to the top of the loop without advancing an element in myHash? To say it another way, can i run ##some code; again with the same $key value? Does something like a back; exist?