Guest User

Untitled

a guest
May 27th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $done = 0;
  2. while($done != 1)
  3. {
  4.  
  5. # Check if anything is undefined
  6. $done = 1;
  7. foreach my $key (keys %hash)
  8. {
  9. if(!defined $key)
  10. {
  11. $done = 0;
  12. last;
  13. }
  14. }
  15. }
Add Comment
Please, Sign In to add comment