pygame101.py

#! /usr/bon/python
# ==================================================================
# from/based-on: pythonprogramming.net/pygame-python-3-part-1-intro/
# ==================================================================

import pygame

pygame.init()

gameDisplay = pygame.display.set_mode((800,600))
pygame.display.set_caption('A Bit Racey')

clock = pygame.time.Clock()

crashed = False

while not crashed:

    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            crashed = True

    print(event)

    pygame.display.update()
    clock.tick(60)
    
pygame.quit()
quit()