Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created November 17, 2023 22:46
Show Gist options
  • Save stephengruppetta/d1592cb29aa9cf08069fa9e56e16a503 to your computer and use it in GitHub Desktop.
Save stephengruppetta/d1592cb29aa9cf08069fa9e56e16a503 to your computer and use it in GitHub Desktop.
# magic_sparkle.py
import turtle
BACKGROUND_COLOUR = "#1a6b72"
lead_dot_speed = 1
window = turtle.Screen()
window.bgcolor(BACKGROUND_COLOUR)
lead_dot = turtle.Turtle()
lead_dot.shape("circle")
lead_dot.color("white")
lead_dot.penup()
while True:
lead_dot.forward(lead_dot_speed)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment