Create a 1000 by 1000 pixel window that displays a spinning donut out of ascii graphics
def donut(): size(1000, 1000) frameRate(30) def setup(): size(1000, 1000) frameRate(30) def draw(): background(0) fill(255, 255, 0) ellipse(500, 500, 400, 400) fill(0) ellipse(500, 500, 300, 300) rotate(radians(frameCount%360)) fill(255, 255, 0) rect(250, 500, 500, 30) donut()