goinaction / code

Source Code for Go In Action examples
4.12k stars 2.36k forks source link

Hb #170

Open misunderpsyco opened 4 months ago

misunderpsyco commented 4 months ago
import turtle

plane = turtle.Turtle()
plane.speed(0)
plane.goto(-100, 100)

# Draw the plane
plane.circle(20)

# Move the plane west
plane.forward(1000)

plane.exitonclick()