I'm making a game that simply makes a square in the top left corner with random dimensions but it wont draw. The source code is below.
#START-UP imports pygame and random
import pygame
import random
pygame.init()
#PRESETS
size = (700,500) #default window size
done = False #exit is...