I\'m tinkering around with pygame right now, and it seems like all the little programs that I make with it hang when I try to close them.
Take the following code, fo
Where do you exit the outer loop?
while True: # outer loop for event in pygame.event.get(): # inner loop if event.type == QUIT: break # <- break inner loop