Skip to content

Instantly share code, notes, and snippets.

@vicradon
Last active February 23, 2019 15:12
Show Gist options
  • Save vicradon/ebff03dbbefdee311bc9c8a4c8b2b3d7 to your computer and use it in GitHub Desktop.
Save vicradon/ebff03dbbefdee311bc9c8a4c8b2b3d7 to your computer and use it in GitHub Desktop.
from turtle import *
def drawSquare(side):
for i in range(4):
fd(side)
lt(90)
tracer(0)
pu(), goto(-300, 0), pd()
ht(), width(5)
count = 40000
while count > 0:
clear()
drawSquare(100)
update()
fd(0.02)
count -= 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment